IsSmeshingResponse constructor

IsSmeshingResponse({
  1. bool? isSmeshing,
})

Implementation

factory IsSmeshingResponse({
  $core.bool? isSmeshing,
}) {
  final _result = create();
  if (isSmeshing != null) {
    _result.isSmeshing = isSmeshing;
  }
  return _result;
}