fromGraphQLListApnsDeviceTokenToDartListApnsDeviceToken function
Implementation
List<ApnsDeviceToken> fromGraphQLListApnsDeviceTokenToDartListApnsDeviceToken(
List<Object?> v,
) => v
.map((e) => fromGraphQLApnsDeviceTokenToDartApnsDeviceToken(e as String))
.toList();