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