toManifestLayout method

ManifestLayout toManifestLayout()

Implementation

ManifestLayout toManifestLayout() {
  switch (this) {
    case 'FULL':
      return ManifestLayout.full;
    case 'COMPACT':
      return ManifestLayout.compact;
  }
  throw Exception('$this is not known in enum ManifestLayout');
}