hasProfile static method
Returns true if a camcorder profile exists for the given camera at the given quality level.
Implementation
static Future<bool> hasProfile(int cameraId, int quality) async {
return await _channel.$hasProfile(cameraId, quality) as bool;
}