fromGraphQLListNullableChatContactVersionToDartListNullableChatContactVersion function

List<ChatContactVersion>? fromGraphQLListNullableChatContactVersionToDartListNullableChatContactVersion(
  1. List<Object?>? v
)

Implementation

List<ChatContactVersion>?
fromGraphQLListNullableChatContactVersionToDartListNullableChatContactVersion(
  List<Object?>? v,
) =>
    v
        ?.map(
          (e) => fromGraphQLChatContactVersionToDartChatContactVersion(
            e as String,
          ),
        )
        .toList();