fromGraphQLListChatContactVersionNullableToDartListChatContactVersionNullable function

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

Implementation

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