build method

  1. @override
EstimatedState build()
override

Builds.

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

Implementation

@override
EstimatedState build() {
  final result = _$v ??
      _$EstimatedState._(
          timestamp: timestamp ?? DateTime.now(),
          src: src,
          srcEnt: srcEnt,
          dst: dst,
          dstEnt: dstEnt,
          lat: lat,
          lon: lon,
          height: height,
          x: x,
          y: y,
          z: z,
          phi: phi,
          theta: theta,
          psi: psi,
          u: u,
          v: v,
          w: w,
          vx: vx,
          vy: vy,
          vz: vz,
          p: p,
          q: q,
          r: r,
          depth: depth,
          alt: alt);
  replace(result);
  return result;
}