fromDartListNullableUserPasswordToGraphQLListNullableUserPassword function
- List<
UserPassword> ? v
Implementation
List<String>? fromDartListNullableUserPasswordToGraphQLListNullableUserPassword(
List<UserPassword>? v,
) => v?.map((e) => fromDartUserPasswordToGraphQLUserPassword(e)).toList();