fromBasePath static method

HDWalletPath? fromBasePath(
  1. String basePath
)

Implementation

static HDWalletPath? fromBasePath(String basePath) {
  return supportedPaths.singleWhereOrNull(
    (hdPath) => hdPath.basePath == basePath,
  );
}