decode method

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

Decodes a data to a ProcedureDataModeEnum.

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

ProcedureDataModeEnum? decode(dynamic data, {bool allowNull = true}) {
  switch (data) {
    case r'remote':
      return ProcedureDataModeEnum.remote;
    case r'on_site':
      return ProcedureDataModeEnum.onSite;
    default:
      if (allowNull == false) {
        throw ArgumentError('Unknown enum value to decode: $data');
      }
  }
  return null;
}