50 lines
2.1 KiB
Dart
50 lines
2.1 KiB
Dart
//
|
|
// Generated code. Do not modify.
|
|
// source: talk_ping.proto
|
|
//
|
|
// @dart = 2.12
|
|
|
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
|
|
|
import 'dart:core' as $core;
|
|
|
|
import 'package:protobuf/protobuf.dart' as $pb;
|
|
|
|
class TalkPing extends $pb.GeneratedMessage {
|
|
factory TalkPing() => create();
|
|
TalkPing._() : super();
|
|
factory TalkPing.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
factory TalkPing.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'TalkPing', package: const $pb.PackageName(_omitMessageNames ? '' : 'main'), createEmptyInstance: create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
'Will be removed in next major version')
|
|
TalkPing clone() => TalkPing()..mergeFromMessage(this);
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
'Will be removed in next major version')
|
|
TalkPing copyWith(void Function(TalkPing) updates) => super.copyWith((message) => updates(message as TalkPing)) as TalkPing;
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static TalkPing create() => TalkPing._();
|
|
TalkPing createEmptyInstance() => create();
|
|
static $pb.PbList<TalkPing> createRepeated() => $pb.PbList<TalkPing>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static TalkPing getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<TalkPing>(create);
|
|
static TalkPing? _defaultInstance;
|
|
}
|
|
|
|
|
|
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|