fromGraphQLListChatCallDeviceIdNullableToDartListChatCallDeviceIdNullable function

List<ChatCallDeviceId?> fromGraphQLListChatCallDeviceIdNullableToDartListChatCallDeviceIdNullable(
  1. List<Object?> v
)

Implementation

List<ChatCallDeviceId?>
fromGraphQLListChatCallDeviceIdNullableToDartListChatCallDeviceIdNullable(
  List<Object?> v,
) => v
    .map(
      (e) => fromGraphQLChatCallDeviceIdNullableToDartChatCallDeviceIdNullable(
        e as String?,
      ),
    )
    .toList();