updateCallAttributes method

  1. @override
Future<CKCall?> updateCallAttributes(
  1. String uuid, {
  2. required Set<CallAttributes> attributes,
  3. Map<String, dynamic>? data,
})
override

Update the call attributes of a call in the callkit UI. If data is provided, it will be merged with the existing data and overwrite any existing keys.

Implementation

@override
Future<CKCall?> updateCallAttributes(String uuid,
    {required Set<CallAttributes> attributes, Map<String, dynamic>? data}) {
  // TODO: implement updateCallAttributes
  throw UnimplementedError();
}