Proposition.fromString constructor

Proposition.fromString(
  1. String str
)

Implementation

factory Proposition.fromString(String str) {
  try {
    return Proposition.fromBase58(Base58Data.validated(str));
  } on Exception catch (e) {
    throw IncorrectEncoding('String is an incorrect encoding type: $e');
  }
}