fromGraphQLListNullableChatCallDeviceIdToDartListNullableChatCallDeviceId function

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

Implementation

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