getPaymentProductFieldById method
Implementation
PaymentProductField? getPaymentProductFieldById(
String paymentProductFieldId) {
for (PaymentProductField field in fields) {
if (field.id == paymentProductFieldId) {
return field;
}
}
return null;
}