buttonLike static method

Widget buttonLike({
  1. dynamic model,
  2. String? likeField,
  3. Function? builder,
  4. Function? onTap,
  5. 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!,
  );
}