## SetBlock
The SetBlock Command Class sets a Block at the specified location:
|constructor| |
|--|--|
|Block|the Block type you want to set|
|location| where you want to set the block|
|nbt|nbt as Map for the block|
Example:
```dart
SetBlock(
Block.stone,
location: Location.glob(
x: 5,
y: 0,
z: 20
)
)
⇒ setblock 5 0 20 minecraft:stone
```