QuickbooksPaymentLineExList.fromMap constructor
Implementation
factory QuickbooksPaymentLineExList.fromMap(Map<String, dynamic> map) {
return QuickbooksPaymentLineExList(
any: map['any'] != null
? List<QuickbooksPaymentLineEx>.from(
(map['any'] as List).map<QuickbooksPaymentLineEx?>(
(x) =>
QuickbooksPaymentLineEx.fromMap(x as Map<String, dynamic>),
),
)
: null,
);
}