guid property

String guid

Implementation

String get guid {
  _value ??= '';
  return _value;
}
void guid=(String value)

Implementation

set guid(String value) {
  _value = value;
}