fromDartListRecentChatsCursorToGraphQLListRecentChatsCursor function

List<String> fromDartListRecentChatsCursorToGraphQLListRecentChatsCursor(
  1. List<RecentChatsCursor> v
)

Implementation

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