Param.fromJson constructor
Implementation
factory Param.fromJson(Map<String, dynamic> json) => Param(
from: json["from"],
to: json["to"],
amount: json["amount"],
maxFee: json["maxFee"],
tips: json["tips"],
payload: json["payload"],
);