fromGraphQLListNullableSessionVersionToDartListNullableSessionVersion function

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

Implementation

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