FillEmpty constructor

FillEmpty(
  1. {required FillEmptyContainer item,
  2. required Function onChange,
  3. Key? key}
)

A constructor that takes in a key, a boolean, a SimpleContainer, and a function.

Implementation

FillEmpty({
  required this.item,
  required super.onChange,
  super.key,
});