deleteUserProfile method

Future<void> deleteUserProfile(
  1. String key
)

Deletes the created user profile

Implementation

Future<void> deleteUserProfile(String key) async {
  dynamic params = {'key': key};
  await _channel.invokeMethod('deleteUserProfile', params);
}