fromGraphQLListNullableChatItemsCursorToDartListNullableChatItemsCursor function

List<ChatItemsCursor>? fromGraphQLListNullableChatItemsCursorToDartListNullableChatItemsCursor(
  1. List<Object?>? v
)

Implementation

List<ChatItemsCursor>?
fromGraphQLListNullableChatItemsCursorToDartListNullableChatItemsCursor(
  List<Object?>? v,
) =>
    v
        ?.map(
          (e) => fromGraphQLChatItemsCursorToDartChatItemsCursor(e as String),
        )
        .toList();