EditableTableOperationRow constructor

const EditableTableOperationRow({
  1. Key? key,
  2. required double rowWidth,
  3. Border? rowBorder,
  4. Widget? addRowIcon,
  5. EdgeInsetsGeometry? addRowIconPadding,
  6. Alignment? addRowIconAlignment,
  7. Color? addRowIconContainerBackgroundColor,
  8. VoidCallback? onRowAdded,
})

Implementation

const EditableTableOperationRow({
  Key? key,
  required this.rowWidth,
  this.rowBorder,
  this.addRowIcon,
  this.addRowIconPadding,
  this.addRowIconAlignment,
  this.addRowIconContainerBackgroundColor,
  this.onRowAdded,
}) : super(key: key);