fromDynamic static method

ClearLogsStep? fromDynamic(
  1. dynamic map
)

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

{
}

Implementation

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

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

  return result;
}