findStartSpecialText method
EySpecialText?
findStartSpecialText(
- SpecialTextGestureTapCallback? tapCallback
)
override
Implementation
@override
EySpecialText? findStartSpecialText(SpecialTextGestureTapCallback? tapCallback) {
if (startTagItems?.tagItems.isEmptyList ?? true) {
return null;
}
return TagText(
tagItems: startTagItems?.tagItems ?? [],
maxTagCount: startTagItems?.maxTagCount ?? 1,
radius: startTagItems?.radius ?? 2,
padding: startTagItems?.padding ?? 2.4,
horSpacing: startTagItems?.horSpacing ?? 5,
verSpacing: startTagItems?.verSpacing ?? 5,
margin: startTagItems?.margin ?? EdgeInsets.zero,
tapCallback: tapCallback);
}