SummerDataCell constructor

const SummerDataCell({
  1. Key? key,
  2. required Widget child,
  3. AlignmentGeometry alignment = Alignment.centerLeft,
  4. EdgeInsetsGeometry padding = EdgeInsets.zero,
  5. bool ellipsis = false,
  6. String? tooltip,
})

Implementation

const SummerDataCell({
  super.key,
  required this.child,
  this.alignment = Alignment.centerLeft,
  this.padding = EdgeInsets.zero,
  this.ellipsis = false,
  this.tooltip,
});