fromGraphQLListRecentChatsCursorToDartListRecentChatsCursor function

List<RecentChatsCursor> fromGraphQLListRecentChatsCursorToDartListRecentChatsCursor(
  1. List<Object?> v
)

Implementation

List<RecentChatsCursor>
fromGraphQLListRecentChatsCursorToDartListRecentChatsCursor(List<Object?> v) =>
    v
        .map(
          (e) =>
              fromGraphQLRecentChatsCursorToDartRecentChatsCursor(e as String),
        )
        .toList();