Install.fromJson constructor

Install.fromJson(
  1. Map json_
)

Implementation

Install.fromJson(core.Map json_)
  : this(
      installState: json_['installState'] as core.String?,
      productId: json_['productId'] as core.String?,
      versionCode: json_['versionCode'] as core.int?,
    );