youtube_explode/lib/src/videos/streams/framerate.dart

29 lines
707 B
Dart

import 'package:freezed_annotation/freezed_annotation.dart';
part 'framerate.freezed.dart';
/// Encapsulates framerate.
@freezed
class Framerate with Comparable<Framerate>, _$Framerate {
/// Initialize an instance of [Framerate]
const factory Framerate(
/// Framerate as frames per second
num framesPerSecond) = _Framerate;
const Framerate._();
///
bool operator >(Framerate other) => framesPerSecond > other.framesPerSecond;
///
bool operator <(Framerate other) => framesPerSecond < other.framesPerSecond;
@override
String toString() => '${framesPerSecond}fps';
@override
int compareTo(Framerate other) =>
framesPerSecond.compareTo(other.framesPerSecond);
}