toMessage method
override
Implementation
@override
String toMessage() {
switch (code) {
case UpdateGroupDirectLinkErrorCode.artemisUnknown:
return 'err_unknown'.l10n;
case UpdateGroupDirectLinkErrorCode.occupied:
return 'err_chat_direct_link_occupied'.l10n;
case UpdateGroupDirectLinkErrorCode.notGroup:
return toString();
case UpdateGroupDirectLinkErrorCode.unknownChat:
return toString();
}
}