fromGraphQLListNullableChatItemVersionToDartListNullableChatItemVersion function

List<ChatItemVersion>? fromGraphQLListNullableChatItemVersionToDartListNullableChatItemVersion(
  1. List<Object?>? v
)

Implementation

List<ChatItemVersion>?
fromGraphQLListNullableChatItemVersionToDartListNullableChatItemVersion(
  List<Object?>? v,
) => v
    ?.map((e) => fromGraphQLChatItemVersionToDartChatItemVersion(e as String))
    .toList();