Directory constructor

Directory({
  1. DateTime? creationDateTime,
  2. String? directoryArn,
  3. String? name,
  4. DirectoryState? state,
})

Implementation

Directory({
  this.creationDateTime,
  this.directoryArn,
  this.name,
  this.state,
});