Cell constructor
Cell({})
Implementation
Cell({
String content = '',
UvStyle style = const UvStyle(),
Link link = const Link(),
this.drawable,
int? width,
}) {
_width = width ?? (content.isEmpty ? 0 : 1);
_setContent(content);
_setStyle(style);
_setLink(link);
}