pointycastle property

String? get pointycastle

Implementation

String? get pointycastle {
  try {
    if (rawData["pointycastle"] is String == false) {
      return null;
    }
    return rawData["pointycastle"] as String;
  } catch (e) {
    return null;
  }
}
set pointycastle (String? value)

Implementation

set pointycastle(String? value) {
  rawData["pointycastle"] = value;
}