fromDomain method

Future<TransferServerService> fromDomain (
  1. String domain
)

Implementation

static Future<TransferServerService> fromDomain(String domain) async {
  checkNotNull(domain, "domain cannot be null");
  StellarToml toml = await StellarToml.fromDomain(domain);
  return new TransferServerService(toml.generalInformation.transferServer);
}