fromObject static method

ObjectValue fromObject(
  1. Map<String, dynamic> value
)

Creates a DataSchemaValue from a map of values.

Throws a FormatException if any entry of the value map is not a valid DataSchemaValue.

Implementation

static ObjectValue fromObject(Map<String, dynamic> value) =>
    ObjectValue._fromValue(value);