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