uri property

String? get uri

Gets the URI from the record type field.

Implementation

String? get uri {
  return decodedType;
}
set uri (String? uri)

Sets the URI in the record type field.

Implementation

set uri(String? uri) {
  decodedType = uri;
}