IdentitySelector.fromJson constructor

IdentitySelector.fromJson(
  1. Map json_
)

Implementation

IdentitySelector.fromJson(core.Map json_)
    : this(
        identity: json_.containsKey('identity')
            ? json_['identity'] as core.String
            : null,
      );