fromGraphQLListChatNameNullableToDartListChatNameNullable function

List<ChatName?> fromGraphQLListChatNameNullableToDartListChatNameNullable(
  1. List<Object?> v
)

Implementation

List<ChatName?> fromGraphQLListChatNameNullableToDartListChatNameNullable(
  List<Object?> v,
) => v
    .map((e) => fromGraphQLChatNameNullableToDartChatNameNullable(e as String?))
    .toList();