DartPropertyCallbackFunction typedef

DartPropertyCallbackFunction = void Function(Pointer<Void> user_data, Pointer<Char> key, int value_type, Pointer<Char> string_value, double double_value, int int_value, int uint_value, bool bool_value)

Implementation

typedef DartPropertyCallbackFunction =
    void Function(
      ffi.Pointer<ffi.Void> user_data,
      ffi.Pointer<ffi.Char> key,
      int value_type,
      ffi.Pointer<ffi.Char> string_value,
      double double_value,
      int int_value,
      int uint_value,
      bool bool_value,
    );