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;
}