ActivityActor.fromJson constructor

ActivityActor.fromJson(
  1. Map json_
)

Implementation

ActivityActor.fromJson(core.Map json_)
    : this(
        callerType: json_.containsKey('callerType')
            ? json_['callerType'] as core.String
            : null,
        email:
            json_.containsKey('email') ? json_['email'] as core.String : null,
        key: json_.containsKey('key') ? json_['key'] as core.String : null,
        profileId: json_.containsKey('profileId')
            ? json_['profileId'] as core.String
            : null,
      );