app.dart 297 B

12345678910111213
  1. class AppUtils {
  2. /// The App will set this function for plugins switch between each other
  3. Future<void> Function(String network, {PageRouteParams? pageRoute})?
  4. switchNetwork;
  5. }
  6. class PageRouteParams {
  7. PageRouteParams(this.path, {this.args});
  8. final String path;
  9. final Map? args;
  10. }