EasyEmpty constructor

const EasyEmpty({
  1. Key? key,
  2. String? description,
  3. EasyEmptyType? type = EasyEmptyType.normal,
})

Implementation

const EasyEmpty({
  Key? key,
  this.description,
  this.type = EasyEmptyType.normal,
}) : super(key: key);