fromString static method

ConsentStatus fromString(
  1. String value
)

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;
  }
}