nullableObject<T> static method

ObjectDataType<T?> nullableObject<T>([
  1. T? defaultValue
])

Return a nullable object type T with the optional defaultValue.

Implementation

static ObjectDataType<T?> nullableObject<T>([T? defaultValue]) =>
    ObjectDataType<T?>(defaultValue);