fromDynamic static method

ResetLocationStep fromDynamic(
  1. dynamic map
)

Creates an instance from a JSON-like map structure. This expects the following format:

{
}

Implementation

static ResetLocationStep fromDynamic(dynamic map) {
  ResetLocationStep result;

  if (map == null) {
    throw Exception('[ResetLocationStep.fromDynamic]: map is null');
  } else {
    result = ResetLocationStep();
  }

  return result;
}