build method
Builds.
The implementation of this method will be generated for you by the built_value generator.
Implementation
@override
_$BuildResults build() {
_$BuildResults _$result;
try {
_$result = _$v ??
new _$BuildResults._(
results: results.build(), changedAssets: _changedAssets?.build());
} catch (_) {
late String _$failedField;
try {
_$failedField = 'results';
results.build();
_$failedField = 'changedAssets';
_changedAssets?.build();
} catch (e) {
throw new BuiltValueNestedFieldError(
'BuildResults', _$failedField, e.toString());
}
rethrow;
}
replace(_$result);
return _$result;
}