copyWith method
Implementation
@override
LogListMapModel copyWith({
String? title,
List<Map<String, dynamic>>? maps,
LogBorderType? borderType,
LogColor? color,
}) {
return LogListMapModel(
maps ?? this.maps,
title: title ?? this.title,
borderType: borderType ?? this.borderType,
color: color ?? this.color,
);
}