toRefreshStrategy method

RefreshStrategy toRefreshStrategy()

Implementation

RefreshStrategy toRefreshStrategy() {
  switch (this) {
    case 'Rolling':
      return RefreshStrategy.rolling;
  }
  throw Exception('$this is not known in enum RefreshStrategy');
}