DraftTextView constructor
const
DraftTextView({
- Key? key,
- required DraftData data,
- OnLinkTab? onLinkTab,
- TextStyle defaultStyle = const TextStyle(fontSize: 12, color: Colors.black),
- ScrollController? controller,
- EdgeInsets? padding,
Implementation
const DraftTextView(
{Key? key,
required this.data,
this.onLinkTab,
this.defaultStyle = const TextStyle(fontSize: 12, color: Colors.black),
this.controller,
this.padding})
: super(key: key);