schemaValue property

  1. @override
dynamic schemaValue
override

The Value that is used when sending data back to the server. Matching against the schema

Implementation

@override
dynamic get schemaValue {
  if (value == null || value!.isEmpty) {
    return null;
  } else {
    return value!.map((e) => e.toJson()).toList();
  }
}