getAddress static method

Future<Map> getAddress()

Implementation

static Future<Map> getAddress() async {
  final data = await channel.invokeMethod('getAddress',{});
  if(data != null){
    return data;
  }
  return {};
}