shopsellongame 0.0.94 copy "shopsellongame: ^0.0.94" to clipboard
shopsellongame: ^0.0.94 copied to clipboard

unlisted

Shop Package for Sellon

shopSellonGame #

A new Flutter package.

Getting Started #

This project for Sellon apps making easer for development.

you can contact me if you have question.

sellon.net

Usage #

// router
    SellonRouter.push(context,widget);
    SellonRouter.pop(context);
    SellonRouter.pop(context,datapop: dynamic);
    
// call api     
     ApiSellon api = ApiSellon(context);
     api.execute(method, SellonMethod.post, parameter, (response) {
        var data = response.data()['data'];
     })
     api.setErrorListener((derror) {
        Ui(context).errorAlert(message: derror.errMessage, duration: 3);
     });