fromGraphQLListChatNameToDartListChatName function

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

Implementation

List<ChatName> fromGraphQLListChatNameToDartListChatName(List<Object?> v) =>
    v.map((e) => fromGraphQLChatNameToDartChatName(e as String)).toList();