FeeDetailsDetails.fromJson constructor

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

Implementation

factory FeeDetailsDetails.fromJson(Map<String, dynamic> json) =>
    FeeDetailsDetails(json['name'], json['amount'],
        description:
            json['description'] == null ? null : json['description']);