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