fromString static method
Implementation
static ConsentStatus fromString(String value) {
switch (value.toLowerCase()) {
case 'granted':
return ConsentStatus.granted;
case 'declined':
return ConsentStatus.declined;
case 'withdrawn':
return ConsentStatus.withdrawn;
case 'not_determined':
default:
return ConsentStatus.notDetermined;
}
}