CellConfig constructor

CellConfig({
  1. Color? backgroundColor,
  2. EdgeInsets? margin,
  3. EdgeInsets? padding,
  4. TextStyle? textStyle,
  5. Alignment? alignment,
  6. EBorderRadius? borderRadius,
  7. BoxShape? shape,
})

Implementation

CellConfig({
  this.backgroundColor,
  this.margin,
  this.padding,
  this.textStyle,
  this.alignment,
  this.borderRadius,
  this.shape,
});