- Copy all used dart_framework files into lib/framework/ - Replace all package:dart_framework/ imports with package:oto_cli/framework/ - Add yaml, archive, ftpconnect as explicit direct dependencies - Remove dart_framework git dependency from pubspec.yaml Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
791 B
Dart
22 lines
791 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'app_data.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
AppData _$AppDataFromJson(Map<String, dynamic> json) => AppData()
|
|
..name = json['name'] as String
|
|
..version = json['version'] as String
|
|
..gitCount = (json['gitCount'] as num?)?.toInt()
|
|
..gitHash = json['gitHash'] as String
|
|
..buildDate = json['buildDate'] as String;
|
|
|
|
Map<String, dynamic> _$AppDataToJson(AppData instance) => <String, dynamic>{
|
|
'name': instance.name,
|
|
'version': instance.version,
|
|
'gitCount': instance.gitCount,
|
|
'gitHash': instance.gitHash,
|
|
'buildDate': instance.buildDate,
|
|
};
|