fromTriple static method

RustTarget? fromTriple(
  1. String triple
)

Implementation

static RustTarget? fromTriple(String triple) {
  return _targets.firstWhereOrNull((e) => e.triple == triple);
}