copyWith method
Implementation
Icon copyWith({String? path, int? width, int? height, bool? isDefault}) {
return Icon(
path: path ?? this.path,
width: width ?? this.width,
height: height ?? this.height,
isDefault: isDefault ?? this.isDefault,
);
}