merge method

GObjectOptions merge(
  1. GObjectOptions options
)

Overrides any non-null parameters from options into this to make a new GObjectOptions.

Implementation

GObjectOptions merge(GObjectOptions options) {
  return GObjectOptions.fromMap(mergeMaps(toMap(), options.toMap()));
}