Channels.fromJson constructor

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

Implementation

Channels.fromJson(Map<String, dynamic> json) {
  code = json['Code'];
  name = json['Name'];
  description = json['Description'];
  paymentIntrucionsDoc = json['PaymentIntrucionsDoc'];
  transactionFee = json['TransactionFee'] != null
      ? new TransactionFee.fromJson(json['TransactionFee'])
      : null;
}