FeeItem.fromJson constructor

FeeItem.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory FeeItem.fromJson(Map<String, dynamic> json) {
  return FeeItem(
    subAccountCode: json['subAccountCode'],
    value: json['value'],
  );
}