fromGraphQLListNullableUserPhoneToDartListNullableUserPhone function
Implementation
List<UserPhone>? fromGraphQLListNullableUserPhoneToDartListNullableUserPhone(
List<Object?>? v,
) => v?.map((e) => fromGraphQLUserPhoneToDartUserPhone(e as String)).toList();