I want to change the values of Leaflet MiniMap object after it is already created.
e.g. miniMap.options.width:
var miniMap = new L.Control.MiniMap(
tileLayer01, { centerFixed: new L.LatLng(50.0, 20.0) }
).addTo(map01);
console.log("miniMap.options.width: " + miniMap.options.width);
// prints 150 (the default value the minimap was initialized with)
miniMap.options.width = 80;
console.log("miniMap.options.width: " + miniMap.options.width);
// prints 80 (the newly set value)
However, that has no effect, the minimap is not rendered accordingly but stays unchanged.
How can I change MiniMap values after creation so that it affects the minimap?