$InstallationState.fromJson constructor

$InstallationState.fromJson(
  1. Map json_
)

Implementation

$InstallationState.fromJson(core.Map json_)
    : this(
        actionUri: json_['actionUri'] as core.String?,
        message: json_['message'] as core.String?,
        stage: json_['stage'] as core.String?,
      );