copyWith method
Implementation
OrgStatisticsFractionCookie copyWith({
String? leading,
String? numerator,
String? separator,
String? denominator,
String? trailing,
}) =>
OrgStatisticsFractionCookie(
leading ?? this.leading,
numerator ?? this.numerator,
separator ?? this.separator,
denominator ?? this.denominator,
trailing ?? this.trailing,
);