Corner.fromJson constructor

Corner.fromJson(
  1. Map<String, dynamic> json
)

Implementation

Corner.fromJson(Map<String, dynamic> json) {
  stop = json["stop"];
  start = json["start"];
  available = json["available"];
}