fromGraphQLListChatContactIdNullableToDartListChatContactIdNullable function

List<ChatContactId?> fromGraphQLListChatContactIdNullableToDartListChatContactIdNullable(
  1. List<Object?> v
)

Implementation

List<ChatContactId?>
fromGraphQLListChatContactIdNullableToDartListChatContactIdNullable(
  List<Object?> v,
) =>
    v
        .map(
          (e) => fromGraphQLChatContactIdNullableToDartChatContactIdNullable(
            e as String?,
          ),
        )
        .toList();