fromDartListChatCallDeviceIdNullableToGraphQLListChatCallDeviceIdNullable function

List<String?> fromDartListChatCallDeviceIdNullableToGraphQLListChatCallDeviceIdNullable(
  1. List<ChatCallDeviceId?> v
)

Implementation

List<String?>
fromDartListChatCallDeviceIdNullableToGraphQLListChatCallDeviceIdNullable(
  List<ChatCallDeviceId?> v,
) => v
    .map(
      (e) =>
          fromDartChatCallDeviceIdNullableToGraphQLChatCallDeviceIdNullable(e),
    )
    .toList();