QueryMigrationInfoRequest.fromJson constructor
Implementation
factory QueryMigrationInfoRequest.fromJson(Map<String, dynamic> json) {
return QueryMigrationInfoRequest(
bridgeId: json.valueAsBigInt<BigInt?>('bridge_id', acceptCamelCase: true),
l1Denom: json.valueAsString<String?>('l1_denom', acceptCamelCase: true),
);
}