Entrypoint.fromJson constructor

Entrypoint.fromJson(
  1. Map json_
)

Implementation

Entrypoint.fromJson(core.Map json_)
    : this(
        shell:
            json_.containsKey('shell') ? json_['shell'] as core.String : null,
      );