profileSet static method

Future<void> profileSet(
  1. Map<String, dynamic> profile
)

Push a profile update.

Implementation

static Future<void> profileSet(Map<String, dynamic> profile) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('profileSet', {'profile': profile});
}