fromGraphQLListNullableChatCallDeviceIdNullableToDartListNullableChatCallDeviceIdNullable function

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

Implementation

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