public final CssMetaData<S, Insets> createInsetsCssMetaData (String property, Function<S, StyleableProperty<Insets>> function, Insets initialValue, boolean inherits)

Create a CssMetaData<S, Insets> with initial value, and inherit flag.

Parameters:
property    The CSS property name.
function    A function that returns the StyleableProperty<Insets> that corresponds to this CssMetaData.
initialValue    The initial value of the property. CSS may reset the property to this value.
inherits    Whether or not the CSS style can be inherited by child nodes

Exceptions:
java.lang.IllegalArgumentException    if property is null or an empty string, or function is null.