copyWith method

Fps copyWith({
  1. int? value,
})

Implementation

Fps copyWith({
  int? value
}) {
  return Fps(
    value ?? this.value
  );
}