Account.fromJson constructor
Account.fromJson(
- Map json_
Implementation
Account.fromJson(core.Map json_)
: this(
accountId: json_['accountId'] as core.String?,
features: json_.containsKey('features')
? AccountFeatures.fromJson(
json_['features'] as core.Map<core.String, core.dynamic>)
: null,
fingerprint: json_['fingerprint'] as core.String?,
name: json_['name'] as core.String?,
path: json_['path'] as core.String?,
shareData: json_['shareData'] as core.bool?,
tagManagerUrl: json_['tagManagerUrl'] as core.String?,
);