BoxId<T>.fromJson constructor

BoxId<T>.fromJson(
  1. String json
)

Implementation

factory BoxId.fromJson(String json) {
  return BoxId.applyByteArray(Base58Data.validated(json).value);
}