end method

Future<Map<String, dynamic>> end ()

Implementation

static Future<Map<String,dynamic>> end( ) async {
  try {
    final String result = await _channel.invokeMethod('end');
    return { "success" : (result=="1"), "message" : result };
  } on PlatformException catch (e) {
    return { "success" : false, "messge" : e.message };
  }
}