fromGraphQLListSessionVersionToDartListSessionVersion function

List<SessionVersion> fromGraphQLListSessionVersionToDartListSessionVersion(
  1. List<Object?> v
)

Implementation

List<SessionVersion> fromGraphQLListSessionVersionToDartListSessionVersion(
  List<Object?> v,
) =>
    v
        .map((e) => fromGraphQLSessionVersionToDartSessionVersion(e as String))
        .toList();