getInstruction static method
Implementation
static MetaplexHydraProgramInstruction? getInstruction(dynamic value) {
try {
return values.firstWhere(
(element) => BytesUtils.bytesEqual(element.insturction, value));
} catch (_) {
return null;
}
}