mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-09 07:28:14 -07:00
Init repo
This commit is contained in:
commit
764b6034e3
566 changed files with 212335 additions and 0 deletions
33
lib/models/items/trick_play_model.g.dart
Normal file
33
lib/models/items/trick_play_model.g.dart
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'trick_play_model.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
_$TrickPlayModelImpl _$$TrickPlayModelImplFromJson(Map<String, dynamic> json) =>
|
||||
_$TrickPlayModelImpl(
|
||||
width: (json['width'] as num).toInt(),
|
||||
height: (json['height'] as num).toInt(),
|
||||
tileWidth: (json['tileWidth'] as num).toInt(),
|
||||
tileHeight: (json['tileHeight'] as num).toInt(),
|
||||
thumbnailCount: (json['thumbnailCount'] as num).toInt(),
|
||||
interval: Duration(microseconds: (json['interval'] as num).toInt()),
|
||||
images: (json['images'] as List<dynamic>?)
|
||||
?.map((e) => e as String)
|
||||
.toList() ??
|
||||
const [],
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$$TrickPlayModelImplToJson(
|
||||
_$TrickPlayModelImpl instance) =>
|
||||
<String, dynamic>{
|
||||
'width': instance.width,
|
||||
'height': instance.height,
|
||||
'tileWidth': instance.tileWidth,
|
||||
'tileHeight': instance.tileHeight,
|
||||
'thumbnailCount': instance.thumbnailCount,
|
||||
'interval': instance.interval.inMicroseconds,
|
||||
'images': instance.images,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue