EasyCell constructor

const EasyCell(
  1. {Key? key,
  2. required String title,
  3. String? label,
  4. String? value,
  5. Widget? extra,
  6. bool? link,
  7. VoidCallback? onClick}
)

单元格

Implementation

const EasyCell({
  Key? key,
  required this.title,
  this.label,
  this.value,
  this.extra,
  this.link,
  this.onClick,
}) : super(key: key);