OrderModel constructor

OrderModel({
  1. String? status,
  2. int? code,
  3. String? timestamp,
  4. Data? data,
})

Implementation

OrderModel({
    this.status,
    this.code,
    this.timestamp,
    this.data,
});