encode method

  1. @override
String? encode(
  1. List<String>? value
)

Converts the value of type T into the database-compatible type S

Implementation

@override
String? encode(List<String>? value) =>
    value == null ? null : json.encode(value);