fromGraphQLListNullableChatContactsCursorNullableToDartListNullableChatContactsCursorNullable function

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

Implementation

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