toAppInstanceDataType method

AppInstanceDataType toAppInstanceDataType()

Implementation

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