TsunamiObservationStation constructor

TsunamiObservationStation({
  1. required int code,
  2. required String name,
  3. String? sensor,
  4. required TsunamiObservationStationFirstHeight firstHeight,
  5. required TsunamiObservationStationMaxHeight maxHeight,
})

Implementation

TsunamiObservationStation({
  required this.code,
  required this.name,
  this.sensor,
  required this.firstHeight,
  required this.maxHeight,
});