Message_AuthRevoke constructor

Message_AuthRevoke({
  1. String? granter,
  2. String? grantee,
  3. String? msgTypeUrl,
})

Implementation

factory Message_AuthRevoke({
  $core.String? granter,
  $core.String? grantee,
  $core.String? msgTypeUrl,
}) {
  final $result = create();
  if (granter != null) {
    $result.granter = granter;
  }
  if (grantee != null) {
    $result.grantee = grantee;
  }
  if (msgTypeUrl != null) {
    $result.msgTypeUrl = msgTypeUrl;
  }
  return $result;
}