BaseModel constructor

BaseModel({
  1. String title = '',
  2. String subtitle = '',
  3. String data1 = '',
  4. String data2 = '',
  5. String data3 = '',
  6. String data4 = '',
  7. List<String> columns = const [],
  8. List rows = const [],
  9. String internalId = '',
})

Implementation

BaseModel({
  this.title = '',
  this.subtitle = '',
  this.data1 = '',
  this.data2 = '',
  this.data3 = '',
  this.data4 = '',
  this.columns = const [],
  this.rows = const [],
  this.internalId = '',
});