chore: rename param
This commit is contained in:
parent
97f8d95f2d
commit
ddf4ca932a
|
@ -24,7 +24,7 @@ class LinkifyText extends StatelessWidget {
|
||||||
this.maxLines,
|
this.maxLines,
|
||||||
this.semanticsLabel,
|
this.semanticsLabel,
|
||||||
this.textWidthBasis,
|
this.textWidthBasis,
|
||||||
this.linkifyListCallBack,
|
this.mapReplace,
|
||||||
Key? key})
|
Key? key})
|
||||||
: super(key: key);
|
: super(key: key);
|
||||||
|
|
||||||
|
@ -132,7 +132,7 @@ class LinkifyText extends StatelessWidget {
|
||||||
|
|
||||||
final Map<LinkType, TextStyle>? customLinkStyles;
|
final Map<LinkType, TextStyle>? customLinkStyles;
|
||||||
|
|
||||||
final Map<String, String>? linkifyListCallBack;
|
final Map<String, String>? mapReplace;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
@ -143,7 +143,7 @@ class LinkifyText extends StatelessWidget {
|
||||||
onTap: onTap,
|
onTap: onTap,
|
||||||
linkTypes: linkTypes,
|
linkTypes: linkTypes,
|
||||||
customLinkStyles: customLinkStyles,
|
customLinkStyles: customLinkStyles,
|
||||||
mapReplace: linkifyListCallBack),
|
mapReplace: mapReplace),
|
||||||
key: key,
|
key: key,
|
||||||
style: textStyle,
|
style: textStyle,
|
||||||
strutStyle: strutStyle,
|
strutStyle: strutStyle,
|
||||||
|
|
Loading…
Reference in New Issue