EnumOption constructor

EnumOption({
  1. required String constValue,
  2. required String title,
  3. String? description,
  4. AcpJsonMap? meta,
})

Implementation

EnumOption({
  required this.constValue,
  required this.title,
  this.description,
  AcpJsonMap? meta,
}) : meta = meta == null ? null : deepFreezeAcpJsonMap(meta!);