fromGraphQLListUserPhoneToDartListUserPhone function

List<UserPhone> fromGraphQLListUserPhoneToDartListUserPhone(
  1. List<Object?> v
)

Implementation

List<UserPhone> fromGraphQLListUserPhoneToDartListUserPhone(List<Object?> v) =>
    v.map((e) => fromGraphQLUserPhoneToDartUserPhone(e as String)).toList();