fromDynamic static method

CancelTestStep? fromDynamic(
  1. dynamic map
)

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

{
}

See also:

  • TestStep.fromDynamic

Implementation

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

  if (map != null) {
    result = CancelTestStep();
  }

  return result;
}