toPlatform method

Platform toPlatform()

Implementation

Platform toPlatform() {
  switch (this) {
    case 'APNS':
      return Platform.apns;
    case 'APNS_SANDBOX':
      return Platform.apnsSandbox;
    case 'GCM':
      return Platform.gcm;
    case 'ADM':
      return Platform.adm;
  }
  throw Exception('$this is not known in enum Platform');
}