copyWith method
Implementation
WebApiModulesUtilitiesGLDistributionRefreshGLHistoryResponse copyWith({
int? status,
bool? success,
String? msg,
}) {
return WebApiModulesUtilitiesGLDistributionRefreshGLHistoryResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
);
}