dartlangeditorflutterflutter-appsflutter-examplesflutter-packageflutter-widgetquillquill-deltaquilljsreactquillrich-textrich-text-editorwysiwygwysiwyg-editor
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
353 B
16 lines
353 B
2 years ago
|
import 'package:flutter/foundation.dart' show immutable;
|
||
|
import 'package:flutter/widgets.dart' show IconData;
|
||
|
|
||
|
import 'base.dart';
|
||
|
|
||
|
@immutable
|
||
|
class QuillToolbarToggleStyleButtonOptions
|
||
|
extends QuillToolbarBaseButtonOptions {
|
||
|
const QuillToolbarToggleStyleButtonOptions({
|
||
|
required this.iconData,
|
||
|
});
|
||
|
|
||
|
@override
|
||
|
final IconData iconData;
|
||
|
}
|