js method

Future js()

Implementation

Future js() async {
  try {
    String data = await rootBundle.loadString(this);
    return jsonDecode(data);
  } catch (e) {
    debugPrint(e.toString());
    return null;
  }
}