quotes property Null safety

String quotes
override

Gets the value of "quotes"

Implementation

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

Sets the value of "quotes"

Implementation

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