rawValue property
Returns the raw string value for native communication.
Implementation
String get rawValue {
switch (this) {
case IaPrescriptionInsuranceType.privateInsurance:
return 'privateInsurance';
case IaPrescriptionInsuranceType.publicHealthcare:
return 'publicHealthcare';
}
}