SEP38FeeDetails.fromJson constructor

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

Implementation

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