removeByUuid method Null safety

void removeByUuid(
  1. String uuid
)

Implementation

void removeByUuid(String uuid) {
  var exception = _getException();

  final removeConstructor =
      _dll_handle.lookupFunction<_DynamicTemplateIndex_remove_1_c, _DynamicTemplateIndex_remove_1_dart>(_c_namespace + "DynamicTemplateIndex_remove_1");

  removeConstructor(_impl, uuid.toNativeUtf8(), exception);

  checkException(exception, _dll_handle);
}