quotes property

String get quotes
override

Gets the value of "quotes"

Implementation

String get quotes => this._quotes;
set quotes (String? value)
override

Sets the value of "quotes"

Implementation

set quotes(String? value) {
  _quotes = value == null ? '' : value;
}