ApiResponse<T> constructor

ApiResponse<T>({
  1. int? code,
  2. String? msg,
  3. dynamic data,
})

Implementation

ApiResponse({this.code, this.msg, this.data});