Business constructor

Business({
  1. String? businessArea,
  2. String? tel,
  3. String? parkingType,
  4. String? alias,
  5. String? cost,
  6. String? cPid,
  7. String? openTimeToday,
  8. String? openTimeWeek,
  9. String? tag,
})

Implementation

Business({
    String? businessArea,
    String? tel,
    String? parkingType,
    String? alias,
    String? cost,
    String? cPid,
    String? openTimeToday,
    String? openTimeWeek,
    String? tag,}){
  _businessArea = businessArea;
  _tel = tel;
  _parkingType = parkingType;
  _alias = alias;
  _cost = cost;
  _cPid = cPid;
  _openTimeToday = openTimeToday;
  _openTimeWeek = openTimeWeek;
  _tag = tag;
}