AccountIdentityType.fromJson constructor

AccountIdentityType.fromJson(
  1. Map json_
)

Implementation

AccountIdentityType.fromJson(core.Map json_)
    : this(
        selfIdentified: json_.containsKey('selfIdentified')
            ? json_['selfIdentified'] as core.bool
            : null,
      );