I wonder how can I setup ssl for http(http: ^0.12.0) package in Flutter, without migrating to dart:io.
Currently I'm using:
http.Client httpClient = http.Client();
and I do not see any options there to setup ssl.
Do I have to use
final SecurityContext context = SecurityContext.defaultContext;
HttpClient client = HttpClient(context);
from dart:io?