orderListResponseModelFromJson function

OrderListResponseModel orderListResponseModelFromJson(
  1. String str
)

data : {"order_id":"85","order_number":"1","total_item":"5","payment_method":"","sub_total":"1207.50","discount":"","tax":"","grand_total":"1207.50","payable":"","status":{"name":"Delivered","color":{"text":"#009C19","background":"#D8FFD9"}},"pick_up_options":"Delivery To Store","pick_up_priority":"Medium","remarks":"check ✅","created_at_date_time":{"date":"22 Feb, 2024","time":"04:27 PM"}} success : 1 message : "Records found." total_records : 1

Implementation

OrderListResponseModel orderListResponseModelFromJson(String str) => OrderListResponseModel.fromJson(json.decode(str));