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