decode method

  1. @override
List<String>? decode(
  1. String? databaseValue
)

Converts the databaseValue of type S into T

Implementation

@override
List<String>? decode(String? databaseValue) => databaseValue == null
    ? null
    : (json.decode(databaseValue) as List<dynamic>).cast();