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