IndentButton constructor

const IndentButton({
  1. required IconData icon,
  2. required QuillController controller,
  3. required bool isIncrease,
  4. double iconSize = kDefaultIconSize,
  5. QuillIconTheme? iconTheme,
  6. Key? key,
})

Implementation

const IndentButton({
  required this.icon,
  required this.controller,
  required this.isIncrease,
  this.iconSize = kDefaultIconSize,
  this.iconTheme,
  Key? key,
}) : super(key: key);