create method
dynamic
create()
Implementation
create(){
methodChannel.setMethodCallHandler((call) async{
if(call == null || call.method == null){
return "";
}
if(call.method == "gwp_complete_play"){
gwpPlayback(call.arguments ?? "");
}
return "";
});
}