LocalAccountProto_AddClientRequest constructor

LocalAccountProto_AddClientRequest({
  1. AccountProto? account,
  2. int? clientId,
})

Implementation

factory LocalAccountProto_AddClientRequest({
  $2.AccountProto? account,
  $core.int? clientId,
}) {
  final $result = create();
  if (account != null) {
    $result.account = account;
  }
  if (clientId != null) {
    $result.clientId = clientId;
  }
  return $result;
}