createOutlineEffect function
Factory function to create outline effect instances.
This function is internal and not exposed in the public API.
Implementation
TextEffect createOutlineEffect({
required Color strokeColor,
required double strokeWidth,
bool fillText = true,
}) {
return _OutlineEffectImpl(
strokeColor: strokeColor,
strokeWidth: strokeWidth,
fillText: fillText,
);
}