build method

  1. @override
_$RuleAction build()
override

Builds.

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

Implementation

@override
_$RuleAction build() {
  _$RuleAction _$result;
  try {
    _$result = _$v ??
        new _$RuleAction._(
            address: address, method: method, body: _body?.build());
  } catch (_) {
    late String _$failedField;
    try {
      _$failedField = 'body';
      _body?.build();
    } catch (e) {
      throw new BuiltValueNestedFieldError(
          'RuleAction', _$failedField, e.toString());
    }
    rethrow;
  }
  replace(_$result);
  return _$result;
}