RemoteObject constructor

RemoteObject({
  1. required RemoteObjectType type,
  2. RemoteObjectSubtype? subtype,
  3. String? className,
  4. dynamic value,
  5. UnserializableValue? unserializableValue,
  6. String? description,
  7. DeepSerializedValue? deepSerializedValue,
  8. RemoteObjectId? objectId,
  9. ObjectPreview? preview,
  10. CustomPreview? customPreview,
})

Implementation

RemoteObject(
    {required this.type,
    this.subtype,
    this.className,
    this.value,
    this.unserializableValue,
    this.description,
    this.deepSerializedValue,
    this.objectId,
    this.preview,
    this.customPreview});