getKeystoreEnv function

Future<String> getKeystoreEnv()

Implementation

Future<String> getKeystoreEnv() async {
  var properties = await rootBundle.loadString('assets/util/keystore.json');
  var mapProps = jsonDecode(properties);
  return mapProps['env'];
}