fromGraphQLListConfirmationCodeToDartListConfirmationCode function
Implementation
List<ConfirmationCode>
fromGraphQLListConfirmationCodeToDartListConfirmationCode(List<Object?> v) => v
.map((e) => fromGraphQLConfirmationCodeToDartConfirmationCode(e as String))
.toList();