设置通道
Future<bool> setAppChannel(String channel) async { if (!_supportPlatform) return false; final bool? state = await _channel.invokeMethod<bool?>('setAppChannel', channel); return state ?? false; }