change method
for test.
Implementation
History change({
String? resultType,
List<String>? message,
String? classLocation,
String? functionLocation,
Map<String, dynamic>? monitor,
Map<String, dynamic>? debug,
List<History>? historyList,
}) {
return History(
resultType ?? this.resultType,
message ?? this.message,
classLocation ?? this.classLocation,
functionLocation ?? this.functionLocation,
monitor ?? this._monitor,
debug ?? this._debug,
historyList ?? this._historyList,
);
}