9 lines
396 B
Dart
9 lines
396 B
Dart
import 'package:protobuf/protobuf.dart';
|
|
import '../gen/proto/iop/control.pb.dart';
|
|
|
|
final Map<String, GeneratedMessage Function(List<int>)> portalParserMap = {
|
|
'iop.PortalHelloRequest': PortalHelloRequest.fromBuffer,
|
|
'iop.PortalHelloResponse': PortalHelloResponse.fromBuffer,
|
|
'PortalHelloRequest': PortalHelloRequest.fromBuffer,
|
|
'PortalHelloResponse': PortalHelloResponse.fromBuffer,
|
|
};
|