canMessageByInboxId method

  1. @override
Future<bool> canMessageByInboxId(
  1. String inboxId
)
override

Implementation

@override
Future<bool> canMessageByInboxId(String inboxId) async {
  final result = await methodChannel.invokeMethod<bool>('canMessageByInboxId', {
    'inboxId': inboxId,
  });
  return result ?? false;
}