copyWith method

Fraction$Response copyWith({
  1. double? fraction,
})

Implementation

Fraction$Response copyWith({double? fraction}) {
  return Fraction$Response(fraction: fraction ?? this.fraction);
}