toSimpleObjs static method

Iterable<Object?> toSimpleObjs(
  1. Iterable<String> jsons
)

Implementation

static Iterable<Object?> toSimpleObjs(Iterable<String> jsons) {
  var jsonDecoder = const JsonDecoder();
  return jsons.map((json) => jsonDecoder.convert(json));
}