copyWith method

CustomFrameRate copyWith({
  1. double? customFrameRate,
})

Implementation

CustomFrameRate copyWith({double? customFrameRate}) {
  return CustomFrameRate(
      customFrameRate: customFrameRate ?? this.customFrameRate);
}