copyWith method

Implementation

FwStandardModulesAdministratorSystemUpdateGetVersionHotfixResponse copyWith({
  int? status,
  bool? success,
  String? msg,
  String? hotfix,
}) {
  return FwStandardModulesAdministratorSystemUpdateGetVersionHotfixResponse(
    status: status ?? this.status,
    success: success ?? this.success,
    msg: msg ?? this.msg,
    hotfix: hotfix ?? this.hotfix,
  );
}