NetworkResponse<T> constructor

NetworkResponse<T>({
  1. T? data,
  2. int? statusCode,
  3. String? msg,
})

Implementation

NetworkResponse({this.data, this.statusCode, this.msg});