fromGraphQLListChatContactsCursorNullableToDartListChatContactsCursorNullable function

List<ChatContactsCursor?> fromGraphQLListChatContactsCursorNullableToDartListChatContactsCursorNullable(
  1. List<Object?> v
)

Implementation

List<ChatContactsCursor?>
fromGraphQLListChatContactsCursorNullableToDartListChatContactsCursorNullable(
  List<Object?> v,
) =>
    v
        .map(
          (e) =>
              fromGraphQLChatContactsCursorNullableToDartChatContactsCursorNullable(
                e as String?,
              ),
        )
        .toList();