ServiceIdentity.fromJson constructor

ServiceIdentity.fromJson(
  1. Map _json
)

Implementation

ServiceIdentity.fromJson(core.Map _json)
    : this(
        email:
            _json.containsKey('email') ? _json['email'] as core.String : null,
      );