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