add extra class method to prevent breaking changes

This commit is contained in:
WilsonLe 2024-07-19 14:30:19 -04:00
parent 6a02db73bb
commit 65c4f4472d

View file

@ -344,4 +344,10 @@ class MatrixLocals extends MatrixLocalizations {
@override
String startedKeyVerification(String senderName) =>
l10n.startedKeyVerification(senderName);
@override
String invitedBy(String senderName) {
// TODO: implement invitedBy
throw UnimplementedError();
}
}