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