IapCredential.fromJson constructor
IapCredential.fromJson(
- Map json_
Implementation
IapCredential.fromJson(core.Map json_)
: this(
iapTestServiceAccountInfo:
json_.containsKey('iapTestServiceAccountInfo')
? IapTestServiceAccountInfo.fromJson(
json_['iapTestServiceAccountInfo']
as core.Map<core.String, core.dynamic>)
: null,
);