build method

  1. @override
_$GeolocationResponse build()
override

Builds.

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

Implementation

@override
_$GeolocationResponse build() {
  _$GeolocationResponse _$result;
  try {
    _$result = _$v ??
        new _$GeolocationResponse._(
            location: location.build(),
            accuracy: BuiltValueNullFieldError.checkNotNull(
                accuracy, 'GeolocationResponse', 'accuracy'));
  } catch (_) {
    late String _$failedField;
    try {
      _$failedField = 'location';
      location.build();
    } catch (e) {
      throw new BuiltValueNestedFieldError(
          'GeolocationResponse', _$failedField, e.toString());
    }
    rethrow;
  }
  replace(_$result);
  return _$result;
}