UriRecord constructor

UriRecord({
  1. String? prefix,
  2. String? content,
})

Implementation

UriRecord({String? prefix, String? content}) {
  if (prefix != null) {
    this.prefix = prefix;
  }
  this.content = content;
}