text property
String
get
text
Получение и установка подписи кластера.
Implementation
String get text {
_CString res = _CSimpleClusterObject_text(_CSimpleClusterObjectMakeDefault().._impl=_self);
final t = res._toDart();
res._releaseIntermediate();
return t;
}
set
text
(String text)
Implementation
set text(String text) {
var _a1 = text._copyFromDartTo_CString();
void res = _CSimpleClusterObject_setText_CString(_CSimpleClusterObjectMakeDefault().._impl=_self, _a1);
_a1._releaseIntermediate();
return res;
}