deserializeList static method

List<Authorperm> deserializeList(
  1. List posts
)

Implementation

static List<Authorperm> deserializeList(List posts) =>
    posts.map((dynamic s) => Authorperm.parse(s as String)).toList();