import 'atmob_channel_reader_platform_interface.dart'; class AtmobChannelReader { static Future default4Test( String channel, int tgPlatformId, int appId) { return AtmobChannelReaderPlatform.instance .default4Test(channel, tgPlatformId, appId); } static Future getChannel() { return AtmobChannelReaderPlatform.instance.getChannel(); } static Future getAppId() { return AtmobChannelReaderPlatform.instance.getAppId(); } static Future getTgPlatformId() { return AtmobChannelReaderPlatform.instance.getTgPlatformId(); } }