RemoveAppLinkRequest constructor

RemoveAppLinkRequest({
  1. String? oauthAppLinkId,
})

Implementation

factory RemoveAppLinkRequest({
  $core.String? oauthAppLinkId,
}) {
  final $result = create();
  if (oauthAppLinkId != null) {
    $result.oauthAppLinkId = oauthAppLinkId;
  }
  return $result;
}