hernoemBoom method

Future<void> hernoemBoom(
  1. String naam
)

Implementation

Future<void> hernoemBoom(String naam) async {
  if (_boom == null) return;
  _boom = _boom!.copyWith(naam: naam.trim());
  notifyListeners();
  await _slaOp();
}