fromDartListNullableChatContactsCursorToGraphQLListNullableChatContactsCursor function

List<String>? fromDartListNullableChatContactsCursorToGraphQLListNullableChatContactsCursor(
  1. List<ChatContactsCursor>? v
)

Implementation

List<String>?
fromDartListNullableChatContactsCursorToGraphQLListNullableChatContactsCursor(
  List<ChatContactsCursor>? v,
) =>
    v
        ?.map((e) => fromDartChatContactsCursorToGraphQLChatContactsCursor(e))
        .toList();