json_serializable_immutable_collections 0.10.1 json_serializable_immutable_collections: ^0.10.1 copied to clipboard
Adding support for immutable collections for json_serializable
import 'package:json_annotation/json_annotation.dart';
import 'package:kt_dart/kt.dart';
part 'main.g.dart';
@JsonSerializable()
class Model {
final KtList<int> myIntList;
Model({required this.myIntList});
factory Model.fromJson(Map<String, dynamic> json) => _$ModelFromJson(json);
Map<String, dynamic> toJson() => _$ModelToJson(this);
}
void main() {
print(Model(myIntList: KtList.of(1, 2, 3)).toJson());
}