GroupIdentity.fromJson constructor

GroupIdentity.fromJson(
  1. Map json_
)

Implementation

GroupIdentity.fromJson(core.Map json_)
  : this(
      groupEmail: json_['groupEmail'] as core.String?,
      id: json_['id'] as core.String?,
    );