fromGraphQLListApnsDeviceTokenToDartListApnsDeviceToken function

List<ApnsDeviceToken> fromGraphQLListApnsDeviceTokenToDartListApnsDeviceToken(
  1. List<Object?> v
)

Implementation

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