build method

  1. @override
_$UiNodeAnchorAttributes build()
override

Builds.

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

Implementation

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