fromWireValue static method

PaymentSheetTelemetryOperation? fromWireValue(
  1. String value
)

Implementation

static PaymentSheetTelemetryOperation? fromWireValue(String value) {
  for (final operation in values) {
    if (operation.wireValue == value) return operation;
  }
  return null;
}