build method

  1. @override
_$Bounds build()
override

Builds.

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

Implementation

@override
_$Bounds build() {
  _$Bounds _$result;
  try {
    _$result = _$v ??
        new _$Bounds._(
            northeast: _northeast?.build(), southwest: _southwest?.build());
  } catch (_) {
    late String _$failedField;
    try {
      _$failedField = 'northeast';
      _northeast?.build();
      _$failedField = 'southwest';
      _southwest?.build();
    } catch (e) {
      throw new BuiltValueNestedFieldError(
          'Bounds', _$failedField, e.toString());
    }
    rethrow;
  }
  replace(_$result);
  return _$result;
}