KnotSuccess.fromJson constructor

KnotSuccess.fromJson(
  1. dynamic json
)

Implementation

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