mirror of
https://gitlab.com/foxixus/neomovies_mobile.git
synced 2025-10-28 01:18:50 +05:00
22 lines
704 B
Dart
22 lines
704 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'player_response.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
PlayerResponse _$PlayerResponseFromJson(Map<String, dynamic> json) =>
|
|
PlayerResponse(
|
|
embedUrl: json['embedUrl'] as String?,
|
|
playerType: json['playerType'] as String?,
|
|
error: json['error'] as String?,
|
|
);
|
|
|
|
Map<String, dynamic> _$PlayerResponseToJson(PlayerResponse instance) =>
|
|
<String, dynamic>{
|
|
'embedUrl': instance.embedUrl,
|
|
'playerType': instance.playerType,
|
|
'error': instance.error,
|
|
};
|