getInstruction static method

AddressLookupTableProgramInstruction? getInstruction(
  1. dynamic value
)

Implementation

static AddressLookupTableProgramInstruction? getInstruction(dynamic value) {
  try {
    return values.firstWhere((element) => element.insturction == value);
  } on StateError {
    return null;
  }
}