Cell constructor

Cell({
  1. String content = '',
  2. UvStyle style = const UvStyle(),
  3. Link link = const Link(),
  4. Object? drawable,
  5. int? width,
})

Implementation

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