fromGraphQLListUserEmailNullableToDartListUserEmailNullable function

List<UserEmail?> fromGraphQLListUserEmailNullableToDartListUserEmailNullable(
  1. List<Object?> v
)

Implementation

List<UserEmail?> fromGraphQLListUserEmailNullableToDartListUserEmailNullable(
  List<Object?> v,
) => v
    .map(
      (e) => fromGraphQLUserEmailNullableToDartUserEmailNullable(e as String?),
    )
    .toList();