decode method

PatientDeactivationReasonEnum? decode(
  1. dynamic data,
  2. {bool allowNull = true}
)

Decodes a data to a PatientDeactivationReasonEnum.

If allowNull is true and the data cannot be decoded successfully, then null is returned. However, if allowNull is false and the data cannot be decoded successfully, then an UnimplementedError is thrown.

The allowNull is very handy when an API changes and a new enum value is added or removed, and users are still using an old app with the old code.

Implementation

PatientDeactivationReasonEnum? decode(dynamic data, {bool allowNull = true}) {
  if (data != null) {
    switch (data.toString()) {
      case r'deceased':
        return PatientDeactivationReasonEnum.deceased;
      case r'moved':
        return PatientDeactivationReasonEnum.moved;
      case r'other_doctor':
        return PatientDeactivationReasonEnum.otherDoctor;
      case r'retired':
        return PatientDeactivationReasonEnum.retired;
      case r'no_contact':
        return PatientDeactivationReasonEnum.noContact;
      case r'unknown':
        return PatientDeactivationReasonEnum.unknown;
      case r'none':
        return PatientDeactivationReasonEnum.none;
      default:
        if (!allowNull) {
          throw ArgumentError('Unknown enum value to decode: $data');
        }
    }
  }
  return null;
}