copyWith method

NicePivotField copyWith({
  1. NicePivotArea? area,
  2. String? summaryType,
})

Implementation

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