toAppInstanceDataType method
Implementation
AppInstanceDataType toAppInstanceDataType() {
switch (this) {
case 'Channel':
return AppInstanceDataType.channel;
case 'ChannelMessage':
return AppInstanceDataType.channelMessage;
}
throw Exception('$this is not known in enum AppInstanceDataType');
}