schemaValue property

  1. @override
List<String>? schemaValue
override

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

Implementation

@override
List<String>? get schemaValue =>
    value == null || value!.isEmpty ? null : value!.toList();