buttonLike static method
Widget
buttonLike({
- dynamic model,
- String? likeField,
- Function? builder,
- Function? onTap,
- WidgetStyleRF? style,
Implementation
static Widget buttonLike({
dynamic model,
String? likeField,
Function? builder,
Function? onTap,
WidgetStyleRF? style,
}) {
return LikeRF(
model: model,
fieldName: likeField!,
builder: builder!,
onTap: onTap!,
style: style!,
);
}