zisky 0.0.1 copy "zisky: ^0.0.1" to clipboard
zisky: ^0.0.1 copied to clipboard

outdated

ussd automation

zisky #

ussd automation

Code Example #

` void callBalanceEnquiry() async {

try {
  Map<String, String> map = Map();
  map["amount"] = "1";

  await Zisky.startAction("16", getResponse, extras: map);
} on PlatformException catch (e) {
  print(e);
}

}

String getResponse(response) { print("RESULT FINAL= $response"); if (response != null) { ActionResponse responseObj = ActionResponse.fromJson(jsonDecode(response));

  if (responseObj.parsed_variables.containsKey("balance")) {
    setState(() {
      result = "\$" + responseObj.parsed_variables["balance"];
    });
  }
}

return response;

}

`

Getting Started #

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

4
likes
0
pub points
0%
popularity

Publisher

unverified uploader

ussd automation

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on zisky