fromGraphQLListUserEmailToDartListUserEmail function

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

Implementation

List<UserEmail> fromGraphQLListUserEmailToDartListUserEmail(List<Object?> v) =>
    v.map((e) => fromGraphQLUserEmailToDartUserEmail(e as String)).toList();