removeProfile method
Removes an installed profile by id.
Implementation
@override
Future<bool> removeProfile(String profileId) async {
try {
final removed = await methodChannel.invokeMethod<bool>('removeProfile', <String, dynamic>{'profileId': profileId});
return removed == true;
} on PlatformException {
return false;
}
}