build method

  1. @override
_$V0BuildListResponseModel build()
override

Builds.

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

Implementation

@override
_$V0BuildListResponseModel build() {
  _$V0BuildListResponseModel _$result;
  try {
    _$result = _$v ??
        new _$V0BuildListResponseModel._(
            data: _data?.build(), paging: _paging?.build());
  } catch (_) {
    late String _$failedField;
    try {
      _$failedField = 'data';
      _data?.build();
      _$failedField = 'paging';
      _paging?.build();
    } catch (e) {
      throw new BuiltValueNestedFieldError(
          'V0BuildListResponseModel', _$failedField, e.toString());
    }
    rethrow;
  }
  replace(_$result);
  return _$result;
}