startBackground method
Implementation
Future<bool> startBackground(
OtplessResultCallback callback, OtplessAuthConfig config) async {
if (!Platform.isAndroid) return false;
return await methodChannel
.invokeMethod("startBackground", {'arg': json.encode(config.toMap())});
}