fromDartListUserEmailNullableToGraphQLListUserEmailNullable function

List<String?> fromDartListUserEmailNullableToGraphQLListUserEmailNullable(
  1. List<UserEmail?> v
)

Implementation

List<String?> fromDartListUserEmailNullableToGraphQLListUserEmailNullable(
  List<UserEmail?> v,
) =>
    v
        .map((e) => fromDartUserEmailNullableToGraphQLUserEmailNullable(e))
        .toList();