XDropwn constructor

const XDropwn({
  1. Key? key,
  2. required XData? initialValue,
  3. required DataType e,
  4. required AsyncSnapshot<QuerySnapshot<Object?>> snapshot,
  5. required dynamic onChange(
    1. String? value
    ),
})

Implementation

const XDropwn(
    {Key? key,
    required this.initialValue,
    required this.e,
    required this.snapshot,
    required this.onChange})
    : super(key: key);