copyWith method
- NicePivotArea? area,
- String? summaryType,
Implementation
NicePivotField copyWith({NicePivotArea? area, String? summaryType}) =>
NicePivotField(
name: name,
caption: caption,
area: area ?? this.area,
summaryType: summaryType ?? this.summaryType,
);