initTrueCaller method
Implementation
Future<bool> initTrueCaller(final OtplessTruecallerRequest? request) async {
if (!Platform.isAndroid) {
return false;
}
if (request != null) {
return await methodChannel
.invokeMethod("initTrueCaller", {"request": request.toMap()});
} else {
return await methodChannel.invokeMethod("initTrueCaller");
}
}