type property
String
get
type
GetType returns type for this layer.
Implementation
String get type {
final p = calloc<ffi.Pointer<ffi.Char>>();
cvRun(() => cdnn.Layer_GetType(ref, p));
final r = p.value.toDartString();
calloc.free(p);
return r;
}