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