close method
void
close()
Closes the dynamic library.
Implementation
void close() {
if (lib != null) {
lib?.close();
lib = null;
}
}
Closes the dynamic library.
void close() {
if (lib != null) {
lib?.close();
lib = null;
}
}