Period constructor

Period({
  1. Point? open,
  2. Point? close,
})

Implementation

Period({
  this.open,
  this.close,
});