init method

Future init()

You need to call function init first when using this plugins

Ex: ZaloLogin().init();

With Android it will show hashcode at console.log Add this hashcode to zalo login dashboard

Implementation

Future init() async {
  final dynamic result = await channel.invokeMethod('init');
  return '$result';
}