EditCell constructor

const EditCell({
  1. Key? key,
  2. EdgeInsetsGeometry padding = const EdgeInsets.all(1),
  3. double minHeight = 40,
  4. required EditValueModel data,
  5. bool showCounter = true,
  6. String? allowSource,
})

Implementation

const EditCell({
  Key? key,
  this.padding = const EdgeInsets.all(1),
  this.minHeight = 40,
  required this.data,
  this.showCounter = true,
  this.allowSource,
}) : super(key: key);