fromDynamic static method

GoBackStep? fromDynamic(
  1. dynamic map
)

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

{
}

Implementation

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

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

  return result;
}