EewHypocenter constructor

EewHypocenter({
  1. required int code,
  2. required String name,
  3. required EarthquakeComponentCoordinate coordinate,
  4. required EewDepth depth,
  5. required EewReduce reduce,
  6. required EewAccuracy accuracy,
  7. String? landOrSea,
})

Implementation

EewHypocenter({
  required this.code,
  required this.name,
  required this.coordinate,
  required this.depth,
  required this.reduce,
  required this.accuracy,
  this.landOrSea,
});