getDemographic static method

Future<String> getDemographic()

Implementation

static Future<String> getDemographic() async {
  try {
    String value = await _channel.invokeMethod('getDemographic');
    return value;
  } on PlatformException catch (error) {
    return Future.error(error);
  }
}