cetificate property

Future<String> get cetificate

Implementation

static Future<String> get cetificate async {
  String cer = await AppStorage.get("cetificate");
  if (cer == "") {
    var uuid = Uuid();
    cer = uuid.v1();
    await setcetificate(cer);
  }

  return cer;
}