BaseResponse<T> constructor

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

Implementation

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