fromGraphQLListApnsVoipDeviceTokenNullableToDartListApnsVoipDeviceTokenNullable function

List<ApnsVoipDeviceToken?> fromGraphQLListApnsVoipDeviceTokenNullableToDartListApnsVoipDeviceTokenNullable(
  1. List<Object?> v
)

Implementation

List<ApnsVoipDeviceToken?>
fromGraphQLListApnsVoipDeviceTokenNullableToDartListApnsVoipDeviceTokenNullable(
  List<Object?> v,
) =>
    v
        .map(
          (e) =>
              fromGraphQLApnsVoipDeviceTokenNullableToDartApnsVoipDeviceTokenNullable(
                e as String?,
              ),
        )
        .toList();