Flag constructor

Flag(
  1. {String? name,
  2. String? comment,
  3. bool? modified,
  4. String? valueAsString}
)

Implementation

Flag({
  this.name,
  this.comment,
  this.modified,
  this.valueAsString,
});