mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 13:38:13 -08:00
69 lines
2.5 KiB
Dart
69 lines
2.5 KiB
Dart
// coverage:ignore-file
|
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
// ignore_for_file: type=lint
|
|
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
|
|
|
|
part of 'session_info_provider.dart';
|
|
|
|
// **************************************************************************
|
|
// FreezedGenerator
|
|
// **************************************************************************
|
|
|
|
T _$identity<T>(T value) => value;
|
|
|
|
final _privateConstructorUsedError = UnsupportedError(
|
|
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');
|
|
|
|
SessionInfoModel _$SessionInfoModelFromJson(Map<String, dynamic> json) {
|
|
return _SessionInfoModel.fromJson(json);
|
|
}
|
|
|
|
/// @nodoc
|
|
mixin _$SessionInfoModel {
|
|
String? get playbackModel => throw _privateConstructorUsedError;
|
|
TranscodingInfo? get transCodeInfo => throw _privateConstructorUsedError;
|
|
|
|
/// Serializes this SessionInfoModel to a JSON map.
|
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
@JsonSerializable()
|
|
class _$SessionInfoModelImpl extends _SessionInfoModel {
|
|
_$SessionInfoModelImpl({this.playbackModel, this.transCodeInfo}) : super._();
|
|
|
|
factory _$SessionInfoModelImpl.fromJson(Map<String, dynamic> json) =>
|
|
_$$SessionInfoModelImplFromJson(json);
|
|
|
|
@override
|
|
final String? playbackModel;
|
|
@override
|
|
final TranscodingInfo? transCodeInfo;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'SessionInfoModel(playbackModel: $playbackModel, transCodeInfo: $transCodeInfo)';
|
|
}
|
|
|
|
@override
|
|
Map<String, dynamic> toJson() {
|
|
return _$$SessionInfoModelImplToJson(
|
|
this,
|
|
);
|
|
}
|
|
}
|
|
|
|
abstract class _SessionInfoModel extends SessionInfoModel {
|
|
factory _SessionInfoModel(
|
|
{final String? playbackModel,
|
|
final TranscodingInfo? transCodeInfo}) = _$SessionInfoModelImpl;
|
|
_SessionInfoModel._() : super._();
|
|
|
|
factory _SessionInfoModel.fromJson(Map<String, dynamic> json) =
|
|
_$SessionInfoModelImpl.fromJson;
|
|
|
|
@override
|
|
String? get playbackModel;
|
|
@override
|
|
TranscodingInfo? get transCodeInfo;
|
|
}
|