build method

  1. @override
_$V0BuildLogInfoResponseModel build()
override

Builds.

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

Implementation

@override
_$V0BuildLogInfoResponseModel build() {
  _$V0BuildLogInfoResponseModel _$result;
  try {
    _$result = _$v ??
        new _$V0BuildLogInfoResponseModel._(
            expiringRawLogUrl: expiringRawLogUrl,
            generatedLogChunksNum: generatedLogChunksNum,
            isArchived: isArchived,
            logChunks: _logChunks?.build(),
            timestamp: _timestamp?.build());
  } catch (_) {
    late String _$failedField;
    try {
      _$failedField = 'logChunks';
      _logChunks?.build();
      _$failedField = 'timestamp';
      _timestamp?.build();
    } catch (e) {
      throw new BuiltValueNestedFieldError(
          'V0BuildLogInfoResponseModel', _$failedField, e.toString());
    }
    rethrow;
  }
  replace(_$result);
  return _$result;
}