type property

String get type

Implementation

String get type => C.mnn_module_get_type(ptr).cast<Utf8>().toDartString();
set type (String value)

Implementation

set type(String value) {
  final cVal = value.toNativeUtf8().cast<ffi.Char>();
  C.mnn_module_set_type(ptr, cVal);
  calloc.free(cVal);
}