Wrapping the options property of a get request with buildCacheOptions in this way:
dio.get( url, options: buildCacheOptions(Duration(days: 7), options: Options(responseType: ResponseType.bytes)) );
The response data property is an String that contains correct data ("[1,23,232...]") but it's not a List of ints ([1,23,232]).
Is that the expected behaviour , or it's a bug?
Wrapping the options property of a get request with buildCacheOptions in this way:
dio.get( url, options: buildCacheOptions(Duration(days: 7), options: Options(responseType: ResponseType.bytes)) );
The response data property is an String that contains correct data ("[1,23,232...]") but it's not a List of ints ([1,23,232]). Is that the expected behaviour , or it's a bug?