Я пытаюсь скопировать свои вспомогательные функции json для объекта, который содержит список с типом абстрактного класса, например:
import 'package:json_annotation/json_annotation.dart';
import 'exercise-variations.a.dart';
part 'routine.model.g.dart';
@JsonSerializable()
class Routine {
List<ExerciseRoutine> exercises;
Routine();
factory Routine.fromJson(Map<String, dynamic> json) => _$RoutineFromJson(json);
Map<String, dynamic> toJson() => _$RoutineToJson(this);
}
import 'package:json_annotation/json_annotation.dart';
import 'exercise-variations.a.dart';
part 'base-exercise-routine.g.dart';
@JsonSerializable()
class BaseExerciseRoutine implements ExerciseRoutine {
int sets;
BaseExerciseRoutine();
factory BaseExerciseRoutine.fromJson(Map<String, dynamic> json) => _$BaseExerciseRoutineFromJson(json);
Map<String, dynamic> toJson() => _$BaseExerciseRoutineToJson(this);
}
abstract class ExerciseRoutine {}
This как я получаю эту ошибку:
[INFO] Running build...
[SEVERE] json_serializable:json_serializable on lib/test/routine.model.dart:
Error running JsonSerializableGenerator
Could not generate `fromJson` code for `exercises` because of type `ExerciseRoutine`.
None of the provided `TypeHelper` instances support the defined type.
package:dojohub_app_flutter/test/routine.model.dart:11:25
╷
11 │ List<ExerciseRoutine> exercises;
│ ^^^^^^^^^
╵
[INFO] Running build completed, took 1.2s
[INFO] Caching finalized dependency graph...
[INFO] Caching finalized dependency graph completed, took 92ms
[SEVERE] Failed after 1.3s
pub finished with exit code 1
Что имеет смысл, потому что ExerciseRoutine
не реализует функцию toJson
и фабрику fromJson
. Может быть, я мог бы добавить функцию toJson
в свой класс abstact, но как мне исправить отсутствующую фабрику fromJson
?