Stock constructor

Stock({
  1. String? id,
  2. String? createdAt,
  3. bool? sharedStock,
  4. bool? warehouse,
  5. bool? transfer,
})

Implementation

Stock(
    {this.id,
    this.createdAt,
    this.sharedStock,
    this.warehouse,
    this.transfer});