toReloadOptionValue method

ReloadOptionValue toReloadOptionValue()

Implementation

ReloadOptionValue toReloadOptionValue() {
  switch (this) {
    case 'data-reload':
      return ReloadOptionValue.dataReload;
    case 'validate-only':
      return ReloadOptionValue.validateOnly;
  }
  throw Exception('$this is not known in enum ReloadOptionValue');
}