fromDynamic static method

RemoveVariableStep? fromDynamic(
  1. dynamic map
)

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

{
  "variableName": <String>,
}

Implementation

static RemoveVariableStep? fromDynamic(dynamic map) {
  RemoveVariableStep? result;

  if (map != null) {
    result = RemoveVariableStep(
      variableName: map['variableName'],
    );
  }

  return result;
}