Project constructor

Project({
  1. String? createTime,
  2. GoogleAppsScriptTypeUser? creator,
  3. GoogleAppsScriptTypeUser? lastModifyUser,
  4. String? parentId,
  5. String? scriptId,
  6. String? title,
  7. String? updateTime,
})

Implementation

Project({
  this.createTime,
  this.creator,
  this.lastModifyUser,
  this.parentId,
  this.scriptId,
  this.title,
  this.updateTime,
});