ExcelCell constructor

ExcelCell({
  1. Widget? child,
  2. String? content,
  3. TextStyle? style,
  4. TextAlign align = TextAlign.center,
})

Implementation

ExcelCell({
  this.child,
  this.content,
  this.style,
  this.align = TextAlign.center,
});