fromGraphQLListNullableApnsDeviceTokenNullableToDartListNullableApnsDeviceTokenNullable function

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

Implementation

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