init method

Future<bool> init(
  1. String sdkId
)

Initialize adspostx with sdkId, sdkId should be non-empty valid String. Returns a bool indicating that if init call is successful or not. In case of error it can also throw exceptions.

Implementation

Future<bool> init(String sdkId) async {
  throw UnimplementedError('init() has not been implemented.');
}