getPlatformVersion method

dynamic getPlatformVersion()

Implementation

getPlatformVersion() async {
  final response =
      await dio.get('$path?$bigCode=${Platform.isAndroid ? android : ios}');

  return jsonDecode(response.toString());
}