Stock constructor

Stock({
  1. String? message,
  2. bool? status,
  3. Data? data,
  4. String? linkId,
  5. String? errors,
  6. String? errorLevel,
})

Implementation

Stock(
    {this.message,
    this.status,
    this.data,
    this.linkId,
    this.errors,
    this.errorLevel});