guid property

String get guid

Implementation

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

Implementation

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