renameProfile static method

Future<bool> renameProfile(
  1. String? fromIdentifier,
  2. String toIdentifier
)

Rename Profile

Implementation

static Future<bool> renameProfile(
    String? fromIdentifier, String toIdentifier) async {
  final bool status = await _channel.invokeMethod('renameProfile',
      {'fromIdentifier': fromIdentifier, 'toIdentifier': toIdentifier});
  return status;
}