fromGraphQLListChatCallDeviceIdToDartListChatCallDeviceId function

List<ChatCallDeviceId> fromGraphQLListChatCallDeviceIdToDartListChatCallDeviceId(
  1. List<Object?> v
)

Implementation

List<ChatCallDeviceId>
fromGraphQLListChatCallDeviceIdToDartListChatCallDeviceId(List<Object?> v) =>
    v
        .map(
          (e) => fromGraphQLChatCallDeviceIdToDartChatCallDeviceId(e as String),
        )
        .toList();