fromGraphQLListUserAgentToDartListUserAgent function

List<UserAgent> fromGraphQLListUserAgentToDartListUserAgent(
  1. List<Object?> v
)

Implementation

List<UserAgent> fromGraphQLListUserAgentToDartListUserAgent(List<Object?> v) =>
    v.map((e) => fromGraphQLUserAgentToDartUserAgent(e as String)).toList();