setCallRect method

  1. @override
Future<void> setCallRect(
  1. ChatId chatId,
  2. Rect prefs
)
override

Sets the provided Rect preferences of an OngoingCall happening in the specified Chat.

Implementation

@override
Future<void> setCallRect(ChatId chatId, Rect prefs) async {
  Log.debug('setCallRect($chatId, $prefs)', '$runtimeType');
  await _callRectLocal.upsert(chatId, prefs);
}