fromGraphQLListNullableRecentChatsCursorToDartListNullableRecentChatsCursor function

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

Implementation

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