KnotExit.fromJson constructor

KnotExit.fromJson(
  1. dynamic json
)

Implementation

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