age property

Future<int?> get age

Implementation

static Future<int?> get age async {
  if (!isSupportedPlatform) return null;

  return await _channel.invokeMethod('getAge');
}