fromJSON method
Implementation
@override
Observable<DateTime>? fromJSON(dynamic jsonValue,
DeserializationContext context) =>
jsonValue is String
? Observable<DateTime>(
dateConverter.fromJSON(jsonValue, context) as DateTime)
: jsonValue;