mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-14 17:55:58 -07:00
Init repo
This commit is contained in:
commit
764b6034e3
566 changed files with 212335 additions and 0 deletions
46
lib/providers/session_info_provider.g.dart
Normal file
46
lib/providers/session_info_provider.g.dart
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'session_info_provider.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
_$SessionInfoModelImpl _$$SessionInfoModelImplFromJson(
|
||||
Map<String, dynamic> json) =>
|
||||
_$SessionInfoModelImpl(
|
||||
playbackModel: json['playbackModel'] as String?,
|
||||
transCodeInfo: json['transCodeInfo'] == null
|
||||
? null
|
||||
: TranscodingInfo.fromJson(
|
||||
json['transCodeInfo'] as Map<String, dynamic>),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$$SessionInfoModelImplToJson(
|
||||
_$SessionInfoModelImpl instance) =>
|
||||
<String, dynamic>{
|
||||
'playbackModel': instance.playbackModel,
|
||||
'transCodeInfo': instance.transCodeInfo,
|
||||
};
|
||||
|
||||
// **************************************************************************
|
||||
// RiverpodGenerator
|
||||
// **************************************************************************
|
||||
|
||||
String _$sessionInfoHash() => r'ab5afcada1c9677cadda954c9abf7eb361dc057d';
|
||||
|
||||
/// See also [SessionInfo].
|
||||
@ProviderFor(SessionInfo)
|
||||
final sessionInfoProvider =
|
||||
AutoDisposeNotifierProvider<SessionInfo, SessionInfoModel>.internal(
|
||||
SessionInfo.new,
|
||||
name: r'sessionInfoProvider',
|
||||
debugGetCreateSourceHash:
|
||||
const bool.fromEnvironment('dart.vm.product') ? null : _$sessionInfoHash,
|
||||
dependencies: null,
|
||||
allTransitiveDependencies: null,
|
||||
);
|
||||
|
||||
typedef _$SessionInfo = AutoDisposeNotifier<SessionInfoModel>;
|
||||
// ignore_for_file: type=lint
|
||||
// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member
|
||||
Loading…
Add table
Add a link
Reference in a new issue