Meta constructor

Meta({
  1. double? latitude,
  2. double? longitude,
  3. String? timezone,
  4. Method? method,
  5. String? latitudeAdjustmentMethod,
  6. String? midnightMode,
  7. String? school,
})

Implementation

Meta({
  this.latitude,
  this.longitude,
  this.timezone,
  this.method,
  this.latitudeAdjustmentMethod,
  this.midnightMode,
  this.school,
});