fromGraphQLListApnsVoipDeviceTokenToDartListApnsVoipDeviceToken function
Implementation
List<ApnsVoipDeviceToken>
fromGraphQLListApnsVoipDeviceTokenToDartListApnsVoipDeviceToken(
List<Object?> v,
) => v
.map(
(e) =>
fromGraphQLApnsVoipDeviceTokenToDartApnsVoipDeviceToken(e as String),
)
.toList();