InAppPurchasesFound.fromJson constructor

InAppPurchasesFound.fromJson(
  1. Map _json
)

Implementation

InAppPurchasesFound.fromJson(core.Map _json)
    : this(
        inAppPurchasesFlowsExplored:
            _json.containsKey('inAppPurchasesFlowsExplored')
                ? _json['inAppPurchasesFlowsExplored'] as core.int
                : null,
        inAppPurchasesFlowsStarted:
            _json.containsKey('inAppPurchasesFlowsStarted')
                ? _json['inAppPurchasesFlowsStarted'] as core.int
                : null,
      );