convertMIListToJson function

String convertMIListToJson(
  1. List<MapsIndoorsObject> objects
)

Implementation

String convertMIListToJson(List<MapsIndoorsObject> objects) {
  return jsonEncode(List.from(objects.map((e) => e.toJson())));
}