AnnotationMapValueType constructor Null safety

AnnotationMapValueType(
  1. {required bool optional,
  2. Map<String, MediaAnnotation>? defaultValue}
)

Implementation

AnnotationMapValueType({required super.optional, super.defaultValue})
    : super(
        keyValueType: const PandoraIdValueType(optional: false),
        valueValueType: const AnnotationValueType(optional: false),
      );