accessPage method

Future<bool> accessPage(
  1. SCAccessPageModel model
)

进入或退出页面 action 页面动作

Implementation

Future<bool> accessPage(SCAccessPageModel model) async {
  if (!_supportPlatform || !isInitialize) return false;
  final bool? state =
      await _channel.invokeMethod<bool>('accessPage', model.toMap());
  return state ?? false;
}