parent
a8c59daec4
commit
2f21721ed0
1 changed files with 13 additions and 0 deletions
@ -0,0 +1,13 @@ |
||||
import 'package:flutter/material.dart'; |
||||
|
||||
class QuillCustomIcon { |
||||
const QuillCustomIcon( |
||||
{this.icon, |
||||
this.onTap}); |
||||
|
||||
///The icon widget |
||||
final Widget? icon; |
||||
|
||||
///The function when the icon is tapped |
||||
final VoidCallback? onTap; |
||||
} |
Loading…
Reference in new issue