Future putAllContext()

in lib/confidence_flutter_sdk_method_channel.dart [39:48]


  Future<void> putAllContext(Map<String, dynamic> context) async {
    final wrappedContext = context.map((key, value) {
      return MapEntry(key, toTypedValue(value));
    });
    await methodChannel
        .invokeMethod<void>(
        'putAllContext',
        {'context': wrappedContext}
    );
  }