copyWith method

Implementation

NetworkRespModel copyWith({
  num? code,
  String? msg,
  NetworkRespDataConvertable? data,
  List<NetworkRespDataConvertable>? dataList,
}) => NetworkRespModel(
  code: code ?? _code,
  msg: msg ?? _msg,
  data: data ?? _data,
  dataList: dataList ?? _dataList,
);