OperationInfo constructor

OperationInfo({
  1. String? responseType,
  2. String? metadataType,
})

Implementation

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