fromJson static method

SimulationType fromJson(
  1. String json
)

Implementation

static SimulationType fromJson(String json) {
  return SimulationType.values.firstWhere(
    (element) => element.name.toLowerCase() == json.toLowerCase(),
    orElse: () => transfer,
  );
}