RecommendedFee.fromJson constructor
Implementation
factory RecommendedFee.fromJson(Map<String, dynamic> json) {
return RecommendedFee(
existingAccount: json['existingAccount'],
createAccount: json['createAccount'],
createAccountInternal: json['createAccountInternal']);
}