SessionSetRequestParam.build constructor

SessionSetRequestParam.build({
  1. ServerRpcVersion? version,
  2. SessionSetRequestArgs? args,
})

Implementation

factory SessionSetRequestParam.build({
  ServerRpcVersion? version,
  SessionSetRequestArgs? args,
}) =>
    buildRequestParam1(version, args,
        nullVersionBuilder: (args) => _SessionSetRequestParam(
            args: args ?? const SessionSetRequestArgs()),
        defaultVersionBuilder: (args) => _SessionSetRequestParam(
            args: args ?? const SessionSetRequestArgs()));