concat method Null safety

void concat(
  1. DynamicTemplateIndex otherIndex
)

Implementation

void concat(DynamicTemplateIndex otherIndex) {
  var exception = _getException();

  final concatConstructor =
      _dll_handle.lookupFunction<_DynamicTemplateIndex_concat_c, _DynamicTemplateIndex_concat_dart>(_c_namespace + "DynamicTemplateIndex_concatenate");

  concatConstructor(_impl, otherIndex._impl, exception);

  checkException(exception, _dll_handle);
}