build method

  1. @override
GpsFix build()
override

Builds.

The implementation of this method will be generated for you by the built_value generator.

Implementation

@override
GpsFix build() {
  final result = _$v ??
      _$GpsFix._(
          timestamp: timestamp ?? DateTime.now(),
          src: src,
          srcEnt: srcEnt,
          dst: dst,
          dstEnt: dstEnt,
          validity: validity,
          type: type,
          utcYear: utcYear,
          utcMonth: utcMonth,
          utcDay: utcDay,
          utcTime: utcTime,
          lat: lat,
          lon: lon,
          height: height,
          satellites: satellites,
          cog: cog,
          sog: sog,
          hdop: hdop,
          vdop: vdop,
          hacc: hacc,
          vacc: vacc);
  replace(result);
  return result;
}