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); } Future getChannel() { return AtmobChannelReaderPlatform.instance.getChannel(); } Future getAppId() { return AtmobChannelReaderPlatform.instance.getAppId(); } Future getTgPlatformId() { return AtmobChannelReaderPlatform.instance.getTgPlatformId(); } }