mirror of https://github.com/grpc/grpc-dart.git
37 lines
1.1 KiB
Dart
37 lines
1.1 KiB
Dart
///
|
|
// Generated code. Do not modify.
|
|
///
|
|
// ignore_for_file: non_constant_identifier_names,library_prefixes
|
|
library grpc.testing_empty;
|
|
|
|
// ignore: UNUSED_SHOWN_NAME
|
|
import 'dart:core' show int, bool, double, String, List, override;
|
|
|
|
import 'package:protobuf/protobuf.dart';
|
|
|
|
class Empty extends GeneratedMessage {
|
|
static final BuilderInfo _i = new BuilderInfo('Empty')
|
|
..hasRequiredFields = false;
|
|
|
|
Empty() : super();
|
|
Empty.fromBuffer(List<int> i, [ExtensionRegistry r = ExtensionRegistry.EMPTY])
|
|
: super.fromBuffer(i, r);
|
|
Empty.fromJson(String i, [ExtensionRegistry r = ExtensionRegistry.EMPTY])
|
|
: super.fromJson(i, r);
|
|
Empty clone() => new Empty()..mergeFromMessage(this);
|
|
BuilderInfo get info_ => _i;
|
|
static Empty create() => new Empty();
|
|
static PbList<Empty> createRepeated() => new PbList<Empty>();
|
|
static Empty getDefault() {
|
|
if (_defaultInstance == null) _defaultInstance = new _ReadonlyEmpty();
|
|
return _defaultInstance;
|
|
}
|
|
|
|
static Empty _defaultInstance;
|
|
static void $checkItem(Empty v) {
|
|
if (v is! Empty) checkItemFailed(v, 'Empty');
|
|
}
|
|
}
|
|
|
|
class _ReadonlyEmpty extends Empty with ReadonlyMessageMixin {}
|