getInfo method Null safety

Future<JanusClientInfo> getInfo()

Get janus server verbose information more like found on path /info

Implementation

Future<JanusClientInfo> getInfo() async {
  return JanusClientInfo.fromJson(await _transport.getInfo());
}