Cell constructor
Cell({})
Implementation
Cell({
Key? key,
this.value,
this.label,
this.title,
this.icon,
this.size: "normal",
this.require: false,
this.clickable: false,
this.isLink: false,
this.onClick,
this.arrowDirection: "right",
this.customTitle,
this.customLabel,
this.customRight,
}) : assert(size == "normal" || size == "large",
"size must be normal or large"),
assert(["left", "right", "up", "down"].indexOf(arrowDirection) > -1,
"arrowDirection must be left, right, up or down"),
super(key: key);