launchWave static method

Future<void> launchWave(
  1. String url
)

Implementation

static Future<void> launchWave(String url) async {
  try{
    await launch(url);
  }catch(e){
    if(await launch("market://details?id=com.wave.personal")){
      throw 'Could not launch market://details?id=com.wave.personal';
    }
  }
}