licenceFromJson function

List<Licence> licenceFromJson(
  1. String str
)

Implementation

List<Licence> licenceFromJson(String str) => List<Licence>.from(json.decode(str).map((x) => Licence.fromMap(x)));