KnotSuccess.fromJson constructor
KnotSuccess.fromJson(
- dynamic json
Implementation
factory KnotSuccess.fromJson(dynamic json) {
return KnotSuccess(
merchant: json["merchant"],
type: json["type"]
);
}