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