getRawConfiguration method

String getRawConfiguration()

Get raw config JSON string data

Implementation

String getRawConfiguration() {
  GetRawConfiguration function = handler.instance
      .lookupFunction<GetRawConfiguration, GetRawConfiguration>(
          "getRawConfiguration");

  Pointer<Pointer<Void>> exception = WebFrameworkException.createException();
  Pointer<Utf8> result = function.call(implementation, exception);

  WebFrameworkException.checkException(exception, handler);

  return result.toDartString();
}