chore: Add GroupCallPrefix/GroupCallMemberPrefix to EventTypes.
chore: fix flutter analyze issue.
This commit is contained in:
parent
c25f893a4a
commit
2fa6561f36
|
|
@ -29,9 +29,6 @@ import 'package:http/http.dart' as http;
|
|||
|
||||
import '../matrix_api_lite.dart';
|
||||
import 'generated/api.dart';
|
||||
import 'model/matrix_connection_exception.dart';
|
||||
import 'model/matrix_exception.dart';
|
||||
import 'model/matrix_keys.dart';
|
||||
|
||||
enum RequestType { GET, POST, PUT, DELETE }
|
||||
|
||||
|
|
|
|||
|
|
@ -57,6 +57,8 @@ abstract class EventTypes {
|
|||
static const String CallAssertedIdentity = 'm.call.asserted_identity';
|
||||
static const String CallAssertedIdentityPrefix =
|
||||
'org.matrix.call.asserted_identity';
|
||||
static const String GroupCallPrefix = 'org.matrix.msc3401.call';
|
||||
static const String GroupCallMemberPrefix = 'org.matrix.msc3401.call.member';
|
||||
static const String Unknown = 'm.unknown';
|
||||
|
||||
// To device event types
|
||||
|
|
|
|||
Loading…
Reference in New Issue