EarthquakeComponentHypocenter constructor

EarthquakeComponentHypocenter({
  1. required String name,
  2. required int code,
  3. required EarthquakeComponentCoordinate coordinate,
  4. required EarthquakeComponentDepth depth,
  5. EarthquakeComponentDetailed? detailed,
  6. EarthquakeComponentAuxiliary? auxiliary,
  7. EarthquakeComponentHypocenterSource? source,
})

Implementation

EarthquakeComponentHypocenter({
  required this.name,
  required this.code,
  required this.coordinate,
  required this.depth,
  this.detailed,
  this.auxiliary,
  this.source,
});