fromGraphQLListChatIdNullableToDartListChatIdNullable function

List<ChatId?> fromGraphQLListChatIdNullableToDartListChatIdNullable(
  1. List<Object?> v
)

Implementation

List<ChatId?> fromGraphQLListChatIdNullableToDartListChatIdNullable(
  List<Object?> v,
) =>
    v
        .map((e) => fromGraphQLChatIdNullableToDartChatIdNullable(e as String?))
        .toList();