Install.fromJson constructor

Install.fromJson(
  1. Map json_
)

Implementation

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