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