getGrantedSamsungHealthDataPermissions method

Future<List<String>> getGrantedSamsungHealthDataPermissions()

Implementation

Future<List<String>> getGrantedSamsungHealthDataPermissions() async {
  if (!Platform.isAndroid) {
    return <String>[];
  }

  return await NativeSDKBridgeV3.getGrantedSamsungHealthDataPermissions(
    connectionId: connectionId,
  );
}