Ntts constructor

Ntts({
  1. bool is_cli = false,
  2. String? pathLib,
})

Implementation

Ntts({
  this.is_cli = false,
  String? pathLib,
}) {
  if (pathLib != null) {
    path_lib = pathLib;
  }
}