object<T> static method

ObjectDataType<T> object<T>(
  1. T defaultValue
)

Return an object type T with the given defaultValue.

Implementation

static ObjectDataType<T> object<T>(T defaultValue) =>
    ObjectDataType<T>(defaultValue);