copyWith method

QuillToolbarSelectAlignmentButtonOptions copyWith({
  1. QuillSelectAlignmentValues<IconData>? iconsData,
  2. QuillSelectAlignmentValues<String>? tooltips,
  3. List<Attribute>? attributes,
  4. bool? showLeftAlignment,
  5. bool? showCenterAlignment,
  6. bool? showRightAlignment,
  7. bool? showJustifyAlignment,
})

Implementation

QuillToolbarSelectAlignmentButtonOptions copyWith({
  QuillSelectAlignmentValues<IconData>? iconsData,
  QuillSelectAlignmentValues<String>? tooltips,
  List<Attribute>? attributes,
  bool? showLeftAlignment,
  bool? showCenterAlignment,
  bool? showRightAlignment,
  bool? showJustifyAlignment,
}) {
  return QuillToolbarSelectAlignmentButtonOptions(
    iconsData: iconsData ?? this.iconsData,
    tooltips: tooltips ?? this.tooltips,
    attributes: attributes ?? this.attributes,
    showLeftAlignment: showLeftAlignment ?? this.showLeftAlignment,
    showCenterAlignment: showCenterAlignment ?? this.showCenterAlignment,
    showRightAlignment: showRightAlignment ?? this.showRightAlignment,
    showJustifyAlignment: showJustifyAlignment ?? this.showJustifyAlignment,
  );
}