Row constructor

Row({
  1. String? createTime,
  2. String? name,
  3. String? updateTime,
  4. Map<String, Object>? values,
})

Implementation

Row({
  this.createTime,
  this.name,
  this.updateTime,
  this.values,
});