Showing
1 changed file
with
1 additions
and
1 deletions
| @@ -337,7 +337,7 @@ class Rxn<T> extends Rx<T?> { | @@ -337,7 +337,7 @@ class Rxn<T> extends Rx<T?> { | ||
| 337 | Rxn([T? initial]) : super(initial); | 337 | Rxn([T? initial]) : super(initial); | 
| 338 | 338 | ||
| 339 | @override | 339 | @override | 
| 340 | - Object toJson() { | 340 | + dynamic toJson() { | 
| 341 | try { | 341 | try { | 
| 342 | return (value as dynamic)?.toJson(); | 342 | return (value as dynamic)?.toJson(); | 
| 343 | } on Exception catch (_) { | 343 | } on Exception catch (_) { | 
- 
Please register or login to post a comment