AccountRefDoc.fromString constructor

AccountRefDoc.fromString(
  1. String accountId
)

Implementation

factory AccountRefDoc.fromString(String accountId) {
  final accountRef = accountId.parse();
  return AccountRefDoc(accountRef);
}