decode method

ElementTypeEnum? decode(
  1. dynamic data, {
  2. bool? allowNull,
})

Decodes a data to a ElementTypeEnum.

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

ElementTypeEnum? decode(dynamic data, {bool? allowNull}) {
  if (data != null) {
    switch (data.toString()) {
      case r'document':
        return ElementTypeEnum.document;
      case r'pagination':
        return ElementTypeEnum.pagination;
      case r'componentcontent':
        return ElementTypeEnum.componentcontent;
      case r'component':
        return ElementTypeEnum.component;
      case r'menu':
        return ElementTypeEnum.menu;
      case r'container':
        return ElementTypeEnum.container;
      case r'container-item':
        return ElementTypeEnum.containerItem;
      case r'asset':
        return ElementTypeEnum.asset;
      case r'imageset':
        return ElementTypeEnum.imageset;
      default:
        if (allowNull == false) {
          throw ArgumentError('Unknown enum value to decode: $data');
        }
    }
  }
  return null;
}