Drive constructor

Drive({
  1. String? name,
  2. DriveItem? root,
  3. String? title,
})

Implementation

Drive({
  this.name,
  this.root,
  this.title,
});