fromDartListNullableRecentChatsCursorToGraphQLListNullableRecentChatsCursor function

List<String>? fromDartListNullableRecentChatsCursorToGraphQLListNullableRecentChatsCursor(
  1. List<RecentChatsCursor>? v
)

Implementation

List<String>?
fromDartListNullableRecentChatsCursorToGraphQLListNullableRecentChatsCursor(
  List<RecentChatsCursor>? v,
) =>
    v
        ?.map((e) => fromDartRecentChatsCursorToGraphQLRecentChatsCursor(e))
        .toList();