ServingBehavior.fromJson constructor

ServingBehavior.fromJson(
  1. Map json_
)

Implementation

ServingBehavior.fromJson(core.Map json_)
  : this(
      redirect: json_.containsKey('redirect')
          ? Redirect.fromJson(
              json_['redirect'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );