getCallRect method

  1. @override
Future<Rect?> getCallRect(
  1. ChatId id
)
override

Returns the Rect preferences of an OngoingCall happening in the specified Chat.

Implementation

@override
Future<Rect?> getCallRect(ChatId id) async {
  Log.debug('getCallRect($id)', '$runtimeType');
  return await _callRectLocal.read(id);
}