getView method

Widget getView(
  1. Function onRefreshEvent,
  2. dynamic onImageEvent(
    1. String name,
    2. String url
    )
)

Implementation

Widget getView(Function onRefreshEvent,Function(String name,String url) onImageEvent) {
  return CardMallView(model: this,onRefreshEvent: onRefreshEvent,onImageClick: onImageEvent,);
}