copyWith method
Implementation
MockDataModel copyWith({
int? id,
String? code,
String? name,
String? path,
}) =>
MockDataModel(
id: id ?? this.id,
code: code ?? this.code,
name: name ?? this.name,
path: path ?? this.path,
);