flutter analyze

This commit is contained in:
Sorunome 2020-05-18 11:45:51 +02:00
parent a4c693558d
commit 50889f9f30
No known key found for this signature in database
GPG Key ID: B19471D07FC9BE9C
1 changed files with 0 additions and 3 deletions

View File

@ -381,8 +381,6 @@ abstract class _KeyVerificationMethod {
client = request.client;
}
static String type;
Future<void> handlePayload(String type, Map<String, dynamic> payload);
bool validateStart(Map<String, dynamic> payload) {
return false;
@ -399,7 +397,6 @@ const KNOWN_AUTHENTICATION_TYPES = ['emoji', 'decimal'];
class _KeyVerificationMethodSas extends _KeyVerificationMethod {
_KeyVerificationMethodSas({KeyVerification request}) : super(request: request);
@override
static String type = 'm.sas.v1';
String keyAgreementProtocol;