toJson method

List<Map<String, String>> toJson()

Implementation

List<Map<String, String>> toJson() {
  return [
    for (var i in this) i.toMap(),
  ].notNullList();
}