fromGraphQLListChatMembersCursorNullableToDartListChatMembersCursorNullable function

List<ChatMembersCursor?> fromGraphQLListChatMembersCursorNullableToDartListChatMembersCursorNullable(
  1. List<Object?> v
)

Implementation

List<ChatMembersCursor?>
fromGraphQLListChatMembersCursorNullableToDartListChatMembersCursorNullable(
  List<Object?> v,
) =>
    v
        .map(
          (e) =>
              fromGraphQLChatMembersCursorNullableToDartChatMembersCursorNullable(
                e as String?,
              ),
        )
        .toList();